Subversion Repositories winbugtracker

Rev

Rev 11 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11 Rev 14
Line 68... Line 68...
68
--
68
--
69
-- Tabellenstruktur für Tabelle `lkp_status`
69
-- Tabellenstruktur für Tabelle `lkp_status`
70
--
70
--
71
 
71
 
72
CREATE TABLE IF NOT EXISTS `lkp_status` (
72
CREATE TABLE IF NOT EXISTS `lkp_status` (
73
`id` INT(11) NOT NULL,
73
  `id` INT(11) NOT NULL,
74
  `status` VARCHAR(255) NOT NULL
74
  `status` VARCHAR(255) NOT NULL,
-
 
75
  `color` INT(11) NOT NULL
75
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
76
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
76
 
77
 
77
--
78
--
78
-- Indexes for dumped tables
79
-- Indexes for dumped tables
79
--
80
--
Line 121... Line 122...
121
--
122
--
122
-- Daten für Tabelle `lkp_status`
123
-- Daten für Tabelle `lkp_status`
123
--
124
--
124
 
125
 
125
INSERT INTO `lkp_status` (`id`, `status`) VALUES
126
INSERT INTO `lkp_status` (`id`, `status`) VALUES
126
(1, 'Offen'),
127
(1, 'Offen', 255),
127
(2, 'Abgelehnt'),
128
(2, 'Abgelehnt', 128),
128
(3, 'In Arbeit'),
129
(3, 'In Arbeit', 8388736),
129
(4, 'Abgeschlossen'),
130
(4, 'Abgeschlossen', 8421376),
130
(5, 'Veröffentlicht');
131
(5, 'Veröffentlicht', 32768);