mirror of
https://github.com/php/web-pecl.git
synced 2026-03-23 23:02:08 +01:00
19 lines
466 B
SQL
19 lines
466 B
SQL
--
|
|
-- Table structure for table `state_order`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `state_order`;
|
|
|
|
CREATE TABLE `state_order` (
|
|
`state` varchar(10) NOT NULL default '',
|
|
`orderno` int(11) default NULL,
|
|
PRIMARY KEY (`state`),
|
|
INDEX (`orderno`)
|
|
);
|
|
|
|
INSERT INTO state_order VALUES('stable', 0);
|
|
INSERT INTO state_order VALUES('beta', 1);
|
|
INSERT INTO state_order VALUES('alpha', 2);
|
|
INSERT INTO state_order VALUES('snapshot', 3);
|
|
INSERT INTO state_order VALUES('devel', 4);
|