1 | -- $Id: States.sql,v 1.4 2000-07-21 03:43:59 bird Exp $
|
---|
2 | --
|
---|
3 | -- Insert states into the state table.
|
---|
4 | --
|
---|
5 | USE odin32;
|
---|
6 |
|
---|
7 | DELETE FROM state;
|
---|
8 |
|
---|
9 | -- refcode color weight name description
|
---|
10 | INSERT INTO state
|
---|
11 | VALUES (0, '#000000', 0, 'Not Implemented', 'Not implemented.');
|
---|
12 | INSERT INTO state
|
---|
13 | VALUES (1, '#0010E0', 5, 'Stub', 'Stub-function. Does nothing.');
|
---|
14 | INSERT INTO state
|
---|
15 | VALUES (2, '#afaf00', 20, 'Partially', 'Partially implemented. Not Tested.');
|
---|
16 | INSERT INTO state
|
---|
17 | VALUES (3, '#e0e000', 25, 'Partially Tested', 'Partially implemented. Tested and approved.');
|
---|
18 | INSERT INTO state
|
---|
19 | VALUES (4, '#00cc00', 90, 'Completely', 'Completely implemented. Not tested.');
|
---|
20 | INSERT INTO state
|
---|
21 | VALUES (5, '#00ff00', 100, 'Completely Tested', 'Completely implemented. Tested and approved.');
|
---|
22 | INSERT INTO state
|
---|
23 | VALUES (6, '#50afaf', 20, 'Open32 Partially', 'Partially implemented. Not Tested.');
|
---|
24 | INSERT INTO state
|
---|
25 | VALUES (7, '#70e0e0', 25, 'Open32 Partially Tested', 'Partially implemented. Tested and approved.');
|
---|
26 | INSERT INTO state
|
---|
27 | VALUES (8, '#7090d8', 90, 'Open32 Completely', 'Completely implemented. Not tested.');
|
---|
28 | INSERT INTO state
|
---|
29 | VALUES (9, '#afbfff', 100, 'Open32 Completely Tested', 'Completely implemented. Tested and approved.');
|
---|
30 | INSERT INTO state
|
---|
31 | VALUES (99, '#aa0000', 25, 'Unknown', 'The state of this function is unknown.');
|
---|
32 |
|
---|
33 |
|
---|