source: trunk/tools/database/States.sql@ 830

Last change on this file since 830 was 830, checked in by bird, 26 years ago

Initial checkin of the database.

File size: 824 bytes
Line 
1-- $Id: States.sql,v 1.1 1999-09-05 02:53:05 bird Exp $
2--
3-- Insert states into the state table.
4--
5USE odin32;
6
7DELETE FROM state;
8
9INSERT INTO state
10 VALUES (0, '#000080', 'Not Implemented', 'Not implemented.');
11INSERT INTO state
12 VALUES (1, '#0000FF', 'Stub', 'Stub-function. Does nothing.');
13INSERT INTO state
14 VALUES (2, '#808000', 'Partially', 'Partially implemented. Not Tested.');
15INSERT INTO state
16 VALUES (3, '#FFFF00', 'Partially Tested', 'Partially implemented. Tested and approved.');
17INSERT INTO state
18 VALUES (4, '#008000', 'Completely', 'Completely implemented. Not tested.');
19INSERT INTO state
20 VALUES (5, '#00FF00', 'Completely Tested', 'Completely implemented. Tested and approved.');
21INSERT INTO state
22 VALUES (99, '#FF0000', 'Unknown', 'The state of this function is unknown.');
23
24
Note: See TracBrowser for help on using the repository browser.