Commit e8a9093f by mercymodest

feat:- add sql

parent ba1fbb39
alter table card
alter table card
......@@ -33,3 +33,42 @@ CREATE TABLE `card_category` (
alter table card
add card_category_uuid bigint null comment '会员卡分类uuid card_category#uuid';
### 总后台 新增菜单
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('5aeecbdf7b6747889069efa7fa7b7f58', 846782090753224704, '会员卡分类', '9ca04e9509fe11ecbf1c00163e0434b9', 2,
DEFAULT, DEFAULT, '/chain-manage/vip-card-classify', 1, DEFAULT);
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('4a14337444e8417eb1b093951000f7f8', 846782090753224704, '新增', '5aeecbdf7b6747889069efa7fa7b7f58', 1, DEFAULT,
DEFAULT, DEFAULT, 1, DEFAULT);
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('1e4839f963c444cea2ee87ff3465a0df', 846782090753224704, '详情', '5aeecbdf7b6747889069efa7fa7b7f58', 2, DEFAULT,
DEFAULT, DEFAULT, 1, DEFAULT);
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('818a472d9f2b42b7b22286a5c93484e8', 846782090753224704, '编辑', '5aeecbdf7b6747889069efa7fa7b7f58', 3, DEFAULT,
DEFAULT, DEFAULT, 1, DEFAULT);
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('5e2d0247aac540f5988eb186aaa3313d', 846782090753224704, '删除', '5aeecbdf7b6747889069efa7fa7b7f58', 4, DEFAULT,
DEFAULT, DEFAULT, 1, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('1e4839f963c444cea2ee87ff3465a0df', '3', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('4a14337444e8417eb1b093951000f7f8', '3', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('5aeecbdf7b6747889069efa7fa7b7f58', '3', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('5e2d0247aac540f5988eb186aaa3313d', '3', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('818a472d9f2b42b7b22286a5c93484e8', '3', DEFAULT, DEFAULT);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment