Ignore:
Timestamp:
Feb 18, 2000, 1:42:08 PM (26 years ago)
Author:
bird
Message:

Read more of the function header into the database.
Stateupd is changed to do this and the database is expanded with new fields.
The sample is partly updated.

File:
1 edited

Legend:

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

    r2789 r2818  
    1 -- $Id: CreateTables.sql,v 1.6 2000-02-15 13:31:06 bird Exp $
     1-- $Id: CreateTables.sql,v 1.7 2000-02-18 12:42:05 bird Exp $
    22--
    33-- Create all tables.
     
    3737    return   VARCHAR(64),
    3838    updated  TINYINT  NOT NULL DEFAULT 0,
     39    description TEXT,
     40    remark      TEXT,
     41    returndesc  TEXT,
     42    sketch      TEXT,
     43    equiv       TEXT,
     44    time        TEXT,
    3945    UNIQUE i1(refcode, aliasfn),
    4046    UNIQUE i1a(dll, aliasfn, refcode),
     
    112118    name     VARCHAR(64) NOT NULL,
    113119    type     VARCHAR(64) NOT NULL,
    114     description VARCHAR(128),
    115     INDEX  i1(function, name(10)),
     120    description TEXT,
     121    INDEX  i1(function, name),
    116122    UNIQUE u1(function, name)
    117123);
Note: See TracChangeset for help on using the changeset viewer.