perf: 构建工具调整
This commit is contained in:
25
build/database/lite/install/alarm_subscribe.sql
Normal file
25
build/database/lite/install/alarm_subscribe.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm_subscribe
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm_subscribe";
|
||||
CREATE TABLE "alarm_subscribe" (
|
||||
"id" integer NOT NULL,
|
||||
"created_at" text(3),
|
||||
"updated_at" text(3),
|
||||
"deleted_at" text(3),
|
||||
"user" text(64),
|
||||
"callback_url" text(255),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table alarm_subscribe
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_alarm_subscribe_deleted_at"
|
||||
ON "alarm_subscribe" (
|
||||
"deleted_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm_subscribe
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user