26 lines
802 B
SQL
26 lines
802 B
SQL
-- ----------------------------
|
|
-- Table structure for oauth2_client
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "oauth2_client";
|
|
CREATE TABLE "oauth2_client" (
|
|
"id" integer NOT NULL,
|
|
"client_id" text(32) NOT NULL,
|
|
"client_secret" text(64) NOT NULL,
|
|
"title" text(64),
|
|
"ip_white" text(255),
|
|
"del_flag" text(1),
|
|
"login_ip" text(128),
|
|
"login_time" integer,
|
|
"create_by" text(64),
|
|
"create_time" integer,
|
|
"update_by" text(64),
|
|
"update_time" integer,
|
|
"remark" text(200),
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of oauth2_client
|
|
-- ----------------------------
|
|
INSERT INTO "oauth2_client" VALUES (1, 'omc5y0j15emByauth2', 'omcl28ybn6y4w9y9ntzsv88hyByauth2', 'Local', '127.0.0.1', '0', '', 0, 'system', 1745919659089, 'system', 1745920239962, '');
|