苍穹外卖项目初始化代码-提交订单

This commit is contained in:
2025-11-19 14:14:47 +08:00
parent cf414e602a
commit e8ab76f09f
76 changed files with 3772 additions and 15 deletions

View File

@@ -0,0 +1,7 @@
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` bigint NOT NULL AUTO_INCREMENT,
`name` varchar(45) DEFAULT NULL,
`age` int DEFAULT NULL,
PRIMARY KEY (`id`)
);