perf: 构建工具调整
This commit is contained in:
39
build/database/lite/common/group.sql
Normal file
39
build/database/lite/common/group.sql
Normal file
@@ -0,0 +1,39 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for group
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "group";
|
||||
CREATE TABLE "group" (
|
||||
"id" integer NOT NULL,
|
||||
"name" text(255) NOT NULL,
|
||||
"description" text(255),
|
||||
"create_time" text,
|
||||
PRIMARY KEY ("name")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table group
|
||||
-- ----------------------------
|
||||
CREATE INDEX "fk_account_id"
|
||||
ON "group" (
|
||||
"id" ASC
|
||||
);
|
||||
CREATE INDEX "name"
|
||||
ON "group" (
|
||||
"name" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of group
|
||||
-- ----------------------------
|
||||
INSERT INTO "group" VALUES (1, 'admin', 'administrator', '2023-05-13 11:04:54');
|
||||
INSERT INTO "group" VALUES (3, 'audit', 'audit group', '2023-05-16 22:48:54');
|
||||
INSERT INTO "group" VALUES (7, 'manager', 'manager', '2023-08-08 13:02:47');
|
||||
INSERT INTO "group" VALUES (6, 'monitor', 'monitor', '2023-08-24 22:34:44');
|
||||
INSERT INTO "group" VALUES (9, 'ne', 'all ne', '2023-08-21 11:24:33');
|
||||
INSERT INTO "group" VALUES (10, 'omc', 'omc', '2023-08-24 09:55:54');
|
||||
INSERT INTO "group" VALUES (2, 'operator', 'operator', '2023-05-16 22:49:42');
|
||||
INSERT INTO "group" VALUES (4, 'oss', 'oss ', '2023-05-16 22:54:50');
|
||||
INSERT INTO "group" VALUES (8, 'test', 'test group', '2023-08-09 15:57:34');
|
||||
INSERT INTO "group" VALUES (5, 'user', 'user group', '2023-05-16 22:48:46');
|
||||
|
||||
-- Dump completed on 2024-03-06 17:27:02
|
||||
Reference in New Issue
Block a user