4 lines
69 B
MySQL
4 lines
69 B
MySQL
|
CREATE TABLE `menus` (
|
||
|
`mid` serial not null,
|
||
|
primary key(`mid`)
|
||
|
);
|