feat: 网元授权添加用户容量列

This commit is contained in:
TsMask
2025-05-09 11:36:43 +08:00
parent 7592c8c4d5
commit 8fe41b136f
4 changed files with 13 additions and 22 deletions

View File

@@ -8,14 +8,15 @@ CREATE TABLE "ne_license" (
"ne_id" text(32) NOT NULL,
"activation_request_code" text(255) NOT NULL,
"license_path" text(255),
"capability" integer,
"serial_num" text(32),
"expiry_date" text(32),
"status" text(32),
"remark" text(255),
"create_by" text(50),
"create_time" integer(20),
"create_time" integer,
"update_by" text(50),
"update_time" integer(20),
"update_time" integer,
PRIMARY KEY ("id")
);
@@ -31,4 +32,4 @@ ON "ne_license" (
-- ----------------------------
-- Records of ne_license
-- ----------------------------
INSERT INTO "ne_license" VALUES (1, 'OMC', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (1, 'OMC', '001', '', '', 0, '', '', '0', '', 'system', 1713928436971, '', 0);