perf: 构建工具调整
This commit is contained in:
26
build/database/lite/install/sys_post.sql
Normal file
26
build/database/lite/install/sys_post.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_post
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_post";
|
||||
CREATE TABLE "sys_post" (
|
||||
"post_id" integer NOT NULL,
|
||||
"post_code" text(64) NOT NULL,
|
||||
"post_name" text(64) NOT NULL,
|
||||
"post_sort" integer(11),
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("post_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_post
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_post" VALUES (1, 'administator', 'post.admin', 1, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
INSERT INTO "sys_post" VALUES (2, 'operator', 'post.operator', 2, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
INSERT INTO "sys_post" VALUES (3, 'monitor', 'post.monitor', 3, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
INSERT INTO "sys_post" VALUES (4, 'visitor', 'post.visitor', 4, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
Reference in New Issue
Block a user