Skip to content

Commit

Permalink
update:sql file
Browse files Browse the repository at this point in the history
  • Loading branch information
xengine-qyt committed May 13, 2024
1 parent 96626e9 commit af45250
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions XEngine_SQL/main.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Target Server Version : 3035005 (3.35.5)
File Encoding : 65001
Date: 09/01/2024 14:12:10
Date: 11/05/2024 16:06:07
*/

PRAGMA foreign_keys = false;
Expand Down Expand Up @@ -103,22 +103,23 @@ CREATE TABLE "Authorize_TempVer" (
DROP TABLE IF EXISTS "Authorize_User";
CREATE TABLE "Authorize_User" (
"ID" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"UserName" TEXT,
"Password" TEXT,
"LeftTime" TEXT,
"EmailAddr" TEXT,
"UserName" TEXT NOT NULL,
"Password" TEXT NOT NULL,
"LeftTime" TEXT NOT NULL,
"EmailAddr" TEXT NOT NULL,
"HardCode" TEXT,
"CardSerialType" integer,
"PhoneNumber" integer,
"IDCard" integer,
"nUserLevel" integer,
"CreateTime" TEXT NOT NULL
"CardSerialType" integer NOT NULL,
"PhoneNumber" integer NOT NULL,
"IDCard" integer NOT NULL,
"nUserLevel" integer NOT NULL,
"UPTime" DATE,
"CreateTime" DATE NOT NULL
);

-- ----------------------------
-- Records of Authorize_User
-- ----------------------------
INSERT INTO "Authorize_User" VALUES (1, 'admin', '123123aa', '5', '[email protected]', 'DAFD2A2DAD', 1, 13699430000, 511025198881118888, 0, '2022-09-21 15:06:45');
INSERT INTO "Authorize_User" VALUES (1, 'admin', '123123aa', '5', '[email protected]', 'DAFD2A2DAD', 1, 13699430000, 511025198881118888, 0, '2022-09-21 15:06:45', '2022-09-21 15:06:45');

-- ----------------------------
-- Table structure for sqlite_sequence
Expand All @@ -134,8 +135,9 @@ CREATE TABLE "sqlite_sequence" (
-- ----------------------------
INSERT INTO "sqlite_sequence" VALUES ('Authorize_BannedUser', 6);
INSERT INTO "sqlite_sequence" VALUES ('Authorize_BannedAddr', 5);
INSERT INTO "sqlite_sequence" VALUES ('Authorize_User', 2);
INSERT INTO "sqlite_sequence" VALUES ('Authorize_TempVer', 1);
INSERT INTO "sqlite_sequence" VALUES ('Authorize_Serial', 10);
INSERT INTO "sqlite_sequence" VALUES ('Authorize_User', 5);

-- ----------------------------
-- Auto increment value for Authorize_BannedAddr
Expand All @@ -147,6 +149,11 @@ UPDATE "sqlite_sequence" SET seq = 5 WHERE name = 'Authorize_BannedAddr';
-- ----------------------------
UPDATE "sqlite_sequence" SET seq = 6 WHERE name = 'Authorize_BannedUser';

-- ----------------------------
-- Auto increment value for Authorize_Serial
-- ----------------------------
UPDATE "sqlite_sequence" SET seq = 10 WHERE name = 'Authorize_Serial';

-- ----------------------------
-- Auto increment value for Authorize_TempVer
-- ----------------------------
Expand All @@ -155,6 +162,6 @@ UPDATE "sqlite_sequence" SET seq = 1 WHERE name = 'Authorize_TempVer';
-- ----------------------------
-- Auto increment value for Authorize_User
-- ----------------------------
UPDATE "sqlite_sequence" SET seq = 2 WHERE name = 'Authorize_User';
UPDATE "sqlite_sequence" SET seq = 5 WHERE name = 'Authorize_User';

PRAGMA foreign_keys = true;

0 comments on commit af45250

Please sign in to comment.