11 lines
172 B
MySQL
11 lines
172 B
MySQL
|
CREATE TABLE states (
|
||
|
state varchar UNIQUE NOT NULL,
|
||
|
PRIMARY KEY(state)
|
||
|
);
|
||
|
|
||
|
INSERT INTO states (state) VALUES
|
||
|
('Requested'),
|
||
|
('Rejected'),
|
||
|
('Accepted'),
|
||
|
('Learned');
|