4 lines
81 B
MySQL
4 lines
81 B
MySQL
|
CREATE TABLE `menus` (
|
||
|
`mid` int not null AUTO_INCREMENT,
|
||
|
primary key(`mid`)
|
||
|
);
|