Ignore:
Timestamp:
Jul 29, 2000, 11:19:34 PM (25 years ago)
Author:
bird
Message:

Added code tabel for function and dll type codes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/database/CreateTables.sql

    r3870 r3900  
    1 -- $Id: CreateTables.sql,v 1.12 2000-07-20 11:39:59 bird Exp $
     1-- $Id: CreateTables.sql,v 1.13 2000-07-29 21:19:34 bird Exp $
    22--
    33-- Create all tables.
     
    2828);
    2929
     30
     31
     32--
     33-- Support table for Codes
     34--
     35CREATE TABLE code (
     36    codegroup   CHAR(4) NOT NULL,
     37    code        CHAR(4) NOT NULL,
     38    description VARCHAR(128) NOT NULL,
     39    UNIQUE  u1(codegroup, code)
     40);
    3041
    3142
     
    137148    INDEX  i4(dll, file),
    138149    INDEX  i5(file),
     150    INDEX  i6(state),
    139151    UNIQUE u1(refcode),
    140152    UNIQUE u2(name, dll),
Note: See TracChangeset for help on using the changeset viewer.