-- ---------------------------- -- Table structure for oauth2_log_login -- ---------------------------- DROP TABLE IF EXISTS "oauth2_log_login"; CREATE TABLE "oauth2_log_login" ( "id" integer NOT NULL, "client_id" text(32), "login_ip" text(128), "login_location" text(32), "browser" text(64), "os" text(64), "status_flag" text(1), "msg" text(255), "login_time" integer, PRIMARY KEY ("id") ); -- ---------------------------- -- Records of oauth2_log_login -- ----------------------------