feat: 完善后端脚手架基础能力
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE `users` (
|
||||
`id` bigint unsigned AUTO_INCREMENT,
|
||||
`username` varchar(64) NOT NULL,
|
||||
`password` varchar(255) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE INDEX `idx_users_username` (`username`)
|
||||
);
|
||||
Reference in New Issue
Block a user