-- jdbox.accounts definition CREATE TABLE `accounts` ( `id` varchar(191) NOT NULL, `user_id` int(11) NOT NULL, `type` varchar(191) NOT NULL, `provider` varchar(191) NOT NULL, `provider_account_id` varchar(191) NOT NULL, `refresh_token` text DEFAULT NULL, `access_token` text DEFAULT NULL, `expires_at` int(11) DEFAULT NULL, `token_type` varchar(191) DEFAULT NULL, `scope` varchar(191) DEFAULT NULL, `id_token` text DEFAULT NULL, `session_state` varchar(191) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `accounts_provider_provider_account_id_key` (`provider`,`provider_account_id`), KEY `accounts_user_id_fkey` (`user_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- jdbox.sessions definition CREATE TABLE `sessions` ( `id` varchar(191) NOT NULL, `expires` datetime(3) NOT NULL, `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3), `userId` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `sessions_userId_idx` (`userId`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- jdbox.users definition CREATE TABLE `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(191) DEFAULT NULL, `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3), `password` varchar(191) NOT NULL, `phone` varchar(191) NOT NULL, `updatedAt` datetime(3) NOT NULL, `verifiedPhone` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `users_phone_key` (`phone`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- jdbox.verification_codes definition CREATE TABLE `verification_codes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `phone` varchar(191) NOT NULL, `code` varchar(191) NOT NULL, `type` varchar(191) NOT NULL, `expiresAt` datetime(3) NOT NULL, `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3), PRIMARY KEY (`id`), KEY `verification_codes_phone_type_idx` (`phone`,`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- 插入初始用户 INSERT INTO users(phone, password, name) VALUES('admin', '$2a$10$k.p3.s28OdLmGCMtuvBoqOxABp03h0Zhmop4eqqlR8sIjkThCcsnS', '管理员');