/[gnue-sb]/gnue-sb/schema/PgSQL/schema.sql
ViewVC logotype

Diff of /gnue-sb/schema/PgSQL/schema.sql

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by dneighbors, Fri Feb 28 06:50:18 2003 UTC revision 1.9 by dneighbors, Fri Feb 28 07:10:46 2003 UTC
# Line 310  CREATE TABLE item Line 310  CREATE TABLE item
310    
311    
312  --  --
313    -- Create 'item_class' table
314    --
315    
316    CREATE SEQUENCE item_class_id_seq;
317    CREATE TABLE item_class
318     (id int8 DEFAULT nextval('item_class_id_seq') NOT NULL,
319      segment varchar(6),
320      description varchar(30),
321      created_by int8,
322      created_on timestamp DEFAULT now() NOT NULL,
323      modified_on timestamp DEFAULT now(),
324      modified_by int8,
325      PRIMARY KEY (id));
326    
327    
328    --
329  -- Create 'item_category' table  -- Create 'item_category' table
330  --  --
331    

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26