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

Last change on this file since 3870 was 3865, checked in by bird, 25 years ago

Added column 'weigth' to the state table.
This column hold the weigth functions in that state should have when
calculating the total completion percentage.

File size: 1.5 KB
Line 
1-- $Id: States.sql,v 1.3 2000-07-19 21:29:36 bird Exp $
2--
3-- Insert states into the state table.
4--
5USE odin32;
6
7DELETE FROM state;
8
9-- refcode color weight name description
10INSERT INTO state
11 VALUES (0, '#000080', 0, 'Not Implemented', 'Not implemented.');
12INSERT INTO state
13 VALUES (1, '#0000FF', 5, 'Stub', 'Stub-function. Does nothing.');
14INSERT INTO state
15 VALUES (2, '#808000', 20, 'Partially', 'Partially implemented. Not Tested.');
16INSERT INTO state
17 VALUES (3, '#FFFF00', 25, 'Partially Tested', 'Partially implemented. Tested and approved.');
18INSERT INTO state
19 VALUES (4, '#008000', 90, 'Completely', 'Completely implemented. Not tested.');
20INSERT INTO state
21 VALUES (5, '#00FF00', 100, 'Completely Tested', 'Completely implemented. Tested and approved.');
22INSERT INTO state
23 VALUES (6, '#808080', 20, 'Open32 Partially', 'Partially implemented. Not Tested.');
24INSERT INTO state
25 VALUES (7, '#FFFF80', 25, 'Open32 Partially Tested', 'Partially implemented. Tested and approved.');
26INSERT INTO state
27 VALUES (8, '#008080', 90, 'Open32 Completely', 'Completely implemented. Not tested.');
28INSERT INTO state
29 VALUES (9, '#00FF80', 100, 'Open32 Completely Tested', 'Completely implemented. Tested and approved.');
30INSERT INTO state
31 VALUES (99, '#FF0000', 25, 'Unknown', 'The state of this function is unknown.');
32
33
Note: See TracBrowser for help on using the repository browser.