perf: 构建工具调整
This commit is contained in:
20
build/database/lite/install/cert_info.sql
Normal file
20
build/database/lite/install/cert_info.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cert_info
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cert_info";
|
||||
CREATE TABLE "cert_info" (
|
||||
"id" integer NOT NULL,
|
||||
"file_name" text(64),
|
||||
"key_length" integer(11),
|
||||
"key_algorithm" text(16),
|
||||
"cert_format" text(16),
|
||||
"cert_expiration" text(24),
|
||||
"created_at" text,
|
||||
"updated_at" text,
|
||||
"deleted_at" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cert_info
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user