User Tools

Site Tools


podoc:photo_item_sql_table

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
podoc:photo_item_sql_table [2007/04/18 14:06] Luudpodoc:photo_item_sql_table [2007/10/19 15:51] (current) Luud
Line 11: Line 11:
 === Schema === === Schema ===
  
-<code>+<code sql>
 create table photo_item ( create table photo_item (
   identifier            integer not null primary key,   identifier            integer not null primary key,
   photo                 integer not null references photo(identifier),   photo                 integer not null references photo(identifier),
-  shop_item             integer not null references photo_format(identifier),+  shop_item             integer not null references shop_item(identifier),
   price                 numeric,   price                 numeric,
   currency              integer references currency(identifier),   currency              integer references currency(identifier),
Line 25: Line 25:
 </code> </code>
  
-=== Related tables ===+=== References tables ===
  
-  * [[photo sql table|photo]]+  * currency references [[currency sql table|currency]](identifier) 
 +  * photo references [[photo sql table|photo]](identifier) 
 +  * shop_item references [[shop_item sql table|shop_item]](identifier) 
 + 
 +=== Is referenced by tables === 
 + 
 +  * [[shop_order sql table|shop_order]](item) references identifier
  
 === Related sequences === === Related sequences ===
Line 35: Line 41:
 === Related indexes === === Related indexes ===
  
-  None.+None.
  
 === Related functions === === Related functions ===
  
   * [[is_photo_for_sale sql function|is_photo_for_sale]]   * [[is_photo_for_sale sql function|is_photo_for_sale]]
 +  * [[photo_shop_transaction_references sql function|photo_shop_transaction_references]]
  
 === Related views === === Related views ===
 +
 +None.
  
 === History === === History ===
Line 51: Line 60:
 == Used last == == Used last ==
  
-Still in use+Version 2.33
  
 == Schema change history == == Schema change history ==
Line 57: Line 66:
 = Version 2.8 = = Version 2.8 =
  
-<code>+<code sql>
 create table photo_item ( create table photo_item (
   identifier            integer not null primary key,   identifier            integer not null primary key,
Line 72: Line 81:
 = Version 2.19 = = Version 2.19 =
  
-<code>+<code sql>
 alter table photo_item rename column format to shop_item; alter table photo_item rename column format to shop_item;
 </code> </code>
Line 78: Line 87:
 = Version 2.29 = = Version 2.29 =
  
-<code>+<code sql>
 alter table photo_item add deleted char(1) check (deleted in ('t', 'f')); alter table photo_item add deleted char(1) check (deleted in ('t', 'f'));
 +</code>
 +
 += Version 2.34 =
 +
 +<code sql>
 +drop table photo_item;
 </code> </code>
  
Line 86: Line 101:
 = Version 2.29 = = Version 2.29 =
  
-<code>+<code sql>
 update photo_item set deleted='f'; update photo_item set deleted='f';
 </code> </code>
  
  
podoc/photo_item_sql_table.txt · Last modified: 2007/10/19 15:51 by Luud