install.sql 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. -- Adminer 4.7.7 MySQL dump
  2. SET NAMES utf8;
  3. SET time_zone = '+00:00';
  4. SET foreign_key_checks = 0;
  5. SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
  6. SET NAMES utf8mb4;
  7. DROP TABLE IF EXISTS `failed_jobs`;
  8. CREATE TABLE `failed_jobs` (
  9. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  10. `connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
  11. `queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
  12. `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  13. `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  14. `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  15. PRIMARY KEY (`id`)
  16. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  17. DROP TABLE IF EXISTS `v2_commission_log`;
  18. CREATE TABLE `v2_commission_log` (
  19. `id` int(11) NOT NULL AUTO_INCREMENT,
  20. `invite_user_id` int(11) NOT NULL,
  21. `user_id` int(11) NOT NULL,
  22. `trade_no` char(36) NOT NULL,
  23. `order_amount` int(11) NOT NULL,
  24. `get_amount` int(11) NOT NULL,
  25. `created_at` int(11) NOT NULL,
  26. `updated_at` int(11) NOT NULL,
  27. PRIMARY KEY (`id`)
  28. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  29. DROP TABLE IF EXISTS `v2_coupon`;
  30. CREATE TABLE `v2_coupon` (
  31. `id` int(11) NOT NULL AUTO_INCREMENT,
  32. `code` varchar(255) NOT NULL,
  33. `name` varchar(255) CHARACTER SET utf8mb4 NOT NULL,
  34. `type` tinyint(1) NOT NULL,
  35. `value` int(11) NOT NULL,
  36. `show` tinyint(1) NOT NULL DEFAULT '0',
  37. `limit_use` int(11) DEFAULT NULL,
  38. `limit_use_with_user` int(11) DEFAULT NULL,
  39. `limit_plan_ids` varchar(255) DEFAULT NULL,
  40. `limit_period` varchar(255) DEFAULT NULL,
  41. `started_at` int(11) NOT NULL,
  42. `ended_at` int(11) NOT NULL,
  43. `created_at` int(11) NOT NULL,
  44. `updated_at` int(11) NOT NULL,
  45. PRIMARY KEY (`id`)
  46. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  47. DROP TABLE IF EXISTS `v2_invite_code`;
  48. CREATE TABLE `v2_invite_code` (
  49. `id` int(11) NOT NULL AUTO_INCREMENT,
  50. `user_id` int(11) NOT NULL,
  51. `code` char(32) NOT NULL,
  52. `status` tinyint(1) NOT NULL DEFAULT '0',
  53. `pv` int(11) NOT NULL DEFAULT '0',
  54. `created_at` int(11) NOT NULL,
  55. `updated_at` int(11) NOT NULL,
  56. PRIMARY KEY (`id`)
  57. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  58. DROP TABLE IF EXISTS `v2_knowledge`;
  59. CREATE TABLE `v2_knowledge` (
  60. `id` int(11) NOT NULL AUTO_INCREMENT,
  61. `language` char(5) NOT NULL COMMENT '語言',
  62. `category` varchar(255) NOT NULL COMMENT '分類名',
  63. `title` varchar(255) NOT NULL COMMENT '標題',
  64. `body` text NOT NULL COMMENT '內容',
  65. `sort` int(11) DEFAULT NULL COMMENT '排序',
  66. `show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '顯示',
  67. `created_at` int(11) NOT NULL COMMENT '創建時間',
  68. `updated_at` int(11) NOT NULL COMMENT '更新時間',
  69. PRIMARY KEY (`id`)
  70. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='知識庫';
  71. DROP TABLE IF EXISTS `v2_log`;
  72. CREATE TABLE `v2_log` (
  73. `id` int(11) NOT NULL AUTO_INCREMENT,
  74. `title` varchar(255) NOT NULL,
  75. `level` varchar(11) DEFAULT NULL,
  76. `host` varchar(255) DEFAULT NULL,
  77. `uri` varchar(255) NOT NULL,
  78. `method` varchar(11) NOT NULL,
  79. `data` text,
  80. `ip` varchar(128) DEFAULT NULL,
  81. `context` text,
  82. `created_at` int(11) NOT NULL,
  83. `updated_at` int(11) NOT NULL,
  84. PRIMARY KEY (`id`)
  85. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  86. DROP TABLE IF EXISTS `v2_mail_log`;
  87. CREATE TABLE `v2_mail_log` (
  88. `id` int(11) NOT NULL AUTO_INCREMENT,
  89. `email` varchar(64) NOT NULL,
  90. `subject` varchar(255) NOT NULL,
  91. `template_name` varchar(255) NOT NULL,
  92. `error` text,
  93. `created_at` int(11) NOT NULL,
  94. `updated_at` int(11) NOT NULL,
  95. PRIMARY KEY (`id`)
  96. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  97. DROP TABLE IF EXISTS `v2_notice`;
  98. CREATE TABLE `v2_notice` (
  99. `id` int(11) NOT NULL AUTO_INCREMENT,
  100. `title` varchar(255) NOT NULL,
  101. `content` text NOT NULL,
  102. `show` tinyint(1) NOT NULL DEFAULT '0',
  103. `img_url` varchar(255) DEFAULT NULL,
  104. `tags` varchar(255) DEFAULT NULL,
  105. `created_at` int(11) NOT NULL,
  106. `updated_at` int(11) NOT NULL,
  107. PRIMARY KEY (`id`)
  108. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  109. DROP TABLE IF EXISTS `v2_order`;
  110. CREATE TABLE `v2_order` (
  111. `id` int(11) NOT NULL AUTO_INCREMENT,
  112. `invite_user_id` int(11) DEFAULT NULL,
  113. `user_id` int(11) NOT NULL,
  114. `plan_id` int(11) NOT NULL,
  115. `coupon_id` int(11) DEFAULT NULL,
  116. `payment_id` int(11) DEFAULT NULL,
  117. `type` int(11) NOT NULL COMMENT '1新购2续费3升级',
  118. `period` varchar(255) NOT NULL,
  119. `trade_no` varchar(36) NOT NULL,
  120. `callback_no` varchar(255) DEFAULT NULL,
  121. `total_amount` int(11) NOT NULL,
  122. `handling_amount` int(11) DEFAULT NULL,
  123. `discount_amount` int(11) DEFAULT NULL,
  124. `surplus_amount` int(11) DEFAULT NULL COMMENT '剩余价值',
  125. `refund_amount` int(11) DEFAULT NULL COMMENT '退款金额',
  126. `balance_amount` int(11) DEFAULT NULL COMMENT '使用余额',
  127. `surplus_order_ids` text COMMENT '折抵订单',
  128. `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0待支付1开通中2已取消3已完成4已折抵',
  129. `commission_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0待确认1发放中2有效3无效',
  130. `commission_balance` int(11) NOT NULL DEFAULT '0',
  131. `actual_commission_balance` int(11) DEFAULT NULL COMMENT '实际支付佣金',
  132. `paid_at` int(11) DEFAULT NULL,
  133. `created_at` int(11) NOT NULL,
  134. `updated_at` int(11) NOT NULL,
  135. PRIMARY KEY (`id`),
  136. UNIQUE KEY `trade_no` (`trade_no`)
  137. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  138. DROP TABLE IF EXISTS `v2_payment`;
  139. CREATE TABLE `v2_payment` (
  140. `id` int(11) NOT NULL AUTO_INCREMENT,
  141. `uuid` char(32) NOT NULL,
  142. `payment` varchar(16) NOT NULL,
  143. `name` varchar(255) NOT NULL,
  144. `icon` varchar(255) DEFAULT NULL,
  145. `config` text NOT NULL,
  146. `notify_domain` varchar(128) DEFAULT NULL,
  147. `handling_fee_fixed` int(11) DEFAULT NULL,
  148. `handling_fee_percent` decimal(5,2) DEFAULT NULL,
  149. `enable` tinyint(1) NOT NULL DEFAULT '0',
  150. `sort` int(11) DEFAULT NULL,
  151. `created_at` int(11) NOT NULL,
  152. `updated_at` int(11) NOT NULL,
  153. PRIMARY KEY (`id`)
  154. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  155. DROP TABLE IF EXISTS `v2_plan`;
  156. CREATE TABLE `v2_plan` (
  157. `id` int(11) NOT NULL AUTO_INCREMENT,
  158. `group_id` int(11) NOT NULL,
  159. `transfer_enable` int(11) NOT NULL,
  160. `name` varchar(255) NOT NULL,
  161. `speed_limit` int(11) DEFAULT NULL,
  162. `show` tinyint(1) NOT NULL DEFAULT '0',
  163. `sort` int(11) DEFAULT NULL,
  164. `renew` tinyint(1) NOT NULL DEFAULT '1',
  165. `content` text,
  166. `month_price` int(11) DEFAULT NULL,
  167. `quarter_price` int(11) DEFAULT NULL,
  168. `half_year_price` int(11) DEFAULT NULL,
  169. `year_price` int(11) DEFAULT NULL,
  170. `two_year_price` int(11) DEFAULT NULL,
  171. `three_year_price` int(11) DEFAULT NULL,
  172. `onetime_price` int(11) DEFAULT NULL,
  173. `reset_price` int(11) DEFAULT NULL,
  174. `reset_traffic_method` tinyint(1) DEFAULT NULL,
  175. `capacity_limit` int(11) DEFAULT NULL,
  176. `created_at` int(11) NOT NULL,
  177. `updated_at` int(11) NOT NULL,
  178. PRIMARY KEY (`id`)
  179. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  180. DROP TABLE IF EXISTS `v2_server_group`;
  181. CREATE TABLE `v2_server_group` (
  182. `id` int(11) NOT NULL AUTO_INCREMENT,
  183. `name` varchar(255) NOT NULL,
  184. `created_at` int(11) NOT NULL,
  185. `updated_at` int(11) NOT NULL,
  186. PRIMARY KEY (`id`)
  187. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  188. DROP TABLE IF EXISTS `v2_server_hysteria`;
  189. CREATE TABLE `v2_server_hysteria` (
  190. `id` int(11) NOT NULL AUTO_INCREMENT,
  191. `group_id` varchar(255) NOT NULL,
  192. `route_id` varchar(255) DEFAULT NULL,
  193. `name` varchar(255) NOT NULL,
  194. `parent_id` int(11) DEFAULT NULL,
  195. `host` varchar(255) NOT NULL,
  196. `port` varchar(11) NOT NULL,
  197. `server_port` int(11) NOT NULL,
  198. `tags` varchar(255) DEFAULT NULL,
  199. `rate` varchar(11) NOT NULL,
  200. `show` tinyint(1) NOT NULL DEFAULT '0',
  201. `sort` int(11) DEFAULT NULL,
  202. `up_mbps` int(11) NOT NULL,
  203. `down_mbps` int(11) NOT NULL,
  204. `server_name` varchar(64) DEFAULT NULL,
  205. `insecure` tinyint(1) NOT NULL DEFAULT '0',
  206. `created_at` int(11) NOT NULL,
  207. `updated_at` int(11) NOT NULL,
  208. PRIMARY KEY (`id`)
  209. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  210. DROP TABLE IF EXISTS `v2_server_route`;
  211. CREATE TABLE `v2_server_route` (
  212. `id` int(11) NOT NULL AUTO_INCREMENT,
  213. `remarks` varchar(255) NOT NULL,
  214. `match` text NOT NULL,
  215. `action` varchar(11) NOT NULL,
  216. `action_value` varchar(255) DEFAULT NULL,
  217. `created_at` int(11) NOT NULL,
  218. `updated_at` int(11) NOT NULL,
  219. PRIMARY KEY (`id`)
  220. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  221. DROP TABLE IF EXISTS `v2_server_shadowsocks`;
  222. CREATE TABLE `v2_server_shadowsocks` (
  223. `id` int(11) NOT NULL AUTO_INCREMENT,
  224. `group_id` varchar(255) NOT NULL,
  225. `route_id` varchar(255) DEFAULT NULL,
  226. `parent_id` int(11) DEFAULT NULL,
  227. `tags` varchar(255) DEFAULT NULL,
  228. `name` varchar(255) NOT NULL,
  229. `rate` varchar(11) NOT NULL,
  230. `host` varchar(255) NOT NULL,
  231. `port` varchar(11) NOT NULL,
  232. `server_port` int(11) NOT NULL,
  233. `cipher` varchar(255) NOT NULL,
  234. `obfs` char(11) DEFAULT NULL,
  235. `obfs_settings` varchar(255) DEFAULT NULL,
  236. `show` tinyint(4) NOT NULL DEFAULT '0',
  237. `sort` int(11) DEFAULT NULL,
  238. `created_at` int(11) NOT NULL,
  239. `updated_at` int(11) NOT NULL,
  240. PRIMARY KEY (`id`)
  241. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  242. DROP TABLE IF EXISTS `v2_server_trojan`;
  243. CREATE TABLE `v2_server_trojan` (
  244. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '节点ID',
  245. `group_id` varchar(255) NOT NULL COMMENT '节点组',
  246. `route_id` varchar(255) DEFAULT NULL,
  247. `parent_id` int(11) DEFAULT NULL COMMENT '父节点',
  248. `tags` varchar(255) DEFAULT NULL COMMENT '节点标签',
  249. `name` varchar(255) NOT NULL COMMENT '节点名称',
  250. `rate` varchar(11) NOT NULL COMMENT '倍率',
  251. `host` varchar(255) NOT NULL COMMENT '主机名',
  252. `port` varchar(11) NOT NULL COMMENT '连接端口',
  253. `server_port` int(11) NOT NULL COMMENT '服务端口',
  254. `allow_insecure` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否允许不安全',
  255. `server_name` varchar(255) DEFAULT NULL,
  256. `show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示',
  257. `sort` int(11) DEFAULT NULL,
  258. `created_at` int(11) NOT NULL,
  259. `updated_at` int(11) NOT NULL,
  260. PRIMARY KEY (`id`)
  261. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='trojan伺服器表';
  262. DROP TABLE IF EXISTS `v2_server_vmess`;
  263. CREATE TABLE `v2_server_vmess` (
  264. `id` int(11) NOT NULL AUTO_INCREMENT,
  265. `group_id` varchar(255) NOT NULL,
  266. `route_id` varchar(255) DEFAULT NULL,
  267. `name` varchar(255) NOT NULL,
  268. `parent_id` int(11) DEFAULT NULL,
  269. `host` varchar(255) NOT NULL,
  270. `port` varchar(11) NOT NULL,
  271. `server_port` int(11) NOT NULL,
  272. `tls` tinyint(4) NOT NULL DEFAULT '0',
  273. `tags` varchar(255) DEFAULT NULL,
  274. `rate` varchar(11) NOT NULL,
  275. `network` varchar(11) NOT NULL,
  276. `rules` text,
  277. `networkSettings` text,
  278. `tlsSettings` text,
  279. `ruleSettings` text,
  280. `dnsSettings` text,
  281. `show` tinyint(1) NOT NULL DEFAULT '0',
  282. `sort` int(11) DEFAULT NULL,
  283. `created_at` int(11) NOT NULL,
  284. `updated_at` int(11) NOT NULL,
  285. PRIMARY KEY (`id`)
  286. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  287. DROP TABLE IF EXISTS `v2_stat`;
  288. CREATE TABLE `v2_stat` (
  289. `id` int(11) NOT NULL AUTO_INCREMENT,
  290. `record_at` int(11) NOT NULL,
  291. `record_type` char(1) NOT NULL,
  292. `order_count` int(11) NOT NULL COMMENT '订单数量',
  293. `order_total` int(11) NOT NULL COMMENT '订单合计',
  294. `commission_count` int(11) NOT NULL,
  295. `commission_total` int(11) NOT NULL COMMENT '佣金合计',
  296. `paid_count` int(11) NOT NULL,
  297. `paid_total` int(11) NOT NULL,
  298. `register_count` int(11) NOT NULL,
  299. `invite_count` int(11) NOT NULL,
  300. `transfer_used_total` varchar(32) NOT NULL,
  301. `created_at` int(11) NOT NULL,
  302. `updated_at` int(11) NOT NULL,
  303. PRIMARY KEY (`id`),
  304. UNIQUE KEY `record_at` (`record_at`)
  305. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单统计';
  306. DROP TABLE IF EXISTS `v2_stat_server`;
  307. CREATE TABLE `v2_stat_server` (
  308. `id` int(11) NOT NULL AUTO_INCREMENT,
  309. `server_id` int(11) NOT NULL COMMENT '节点id',
  310. `server_type` char(11) NOT NULL COMMENT '节点类型',
  311. `u` bigint(20) NOT NULL,
  312. `d` bigint(20) NOT NULL,
  313. `record_type` char(1) NOT NULL COMMENT 'd day m month',
  314. `record_at` int(11) NOT NULL COMMENT '记录时间',
  315. `created_at` int(11) NOT NULL,
  316. `updated_at` int(11) NOT NULL,
  317. PRIMARY KEY (`id`),
  318. UNIQUE KEY `server_id_server_type_record_at` (`server_id`,`server_type`,`record_at`),
  319. KEY `record_at` (`record_at`),
  320. KEY `server_id` (`server_id`)
  321. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='节点数据统计';
  322. DROP TABLE IF EXISTS `v2_stat_user`;
  323. CREATE TABLE `v2_stat_user` (
  324. `id` int(11) NOT NULL AUTO_INCREMENT,
  325. `user_id` int(11) NOT NULL,
  326. `server_rate` decimal(10,2) NOT NULL,
  327. `u` bigint(20) NOT NULL,
  328. `d` bigint(20) NOT NULL,
  329. `record_type` char(2) NOT NULL,
  330. `record_at` int(11) NOT NULL,
  331. `created_at` int(11) NOT NULL,
  332. `updated_at` int(11) NOT NULL,
  333. PRIMARY KEY (`id`),
  334. UNIQUE KEY `server_rate_user_id_record_at` (`server_rate`,`user_id`,`record_at`),
  335. KEY `user_id` (`user_id`),
  336. KEY `record_at` (`record_at`),
  337. KEY `server_rate` (`server_rate`)
  338. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  339. DROP TABLE IF EXISTS `v2_ticket`;
  340. CREATE TABLE `v2_ticket` (
  341. `id` int(11) NOT NULL AUTO_INCREMENT,
  342. `user_id` int(11) NOT NULL,
  343. `subject` varchar(255) NOT NULL,
  344. `level` tinyint(1) NOT NULL,
  345. `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:已开启 1:已关闭',
  346. `reply_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0:待回复 1:已回复',
  347. `created_at` int(11) NOT NULL,
  348. `updated_at` int(11) NOT NULL,
  349. PRIMARY KEY (`id`)
  350. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  351. DROP TABLE IF EXISTS `v2_ticket_message`;
  352. CREATE TABLE `v2_ticket_message` (
  353. `id` int(11) NOT NULL AUTO_INCREMENT,
  354. `user_id` int(11) NOT NULL,
  355. `ticket_id` int(11) NOT NULL,
  356. `message` text CHARACTER SET utf8mb4 NOT NULL,
  357. `created_at` int(11) NOT NULL,
  358. `updated_at` int(11) NOT NULL,
  359. PRIMARY KEY (`id`)
  360. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  361. DROP TABLE IF EXISTS `v2_user`;
  362. CREATE TABLE `v2_user` (
  363. `id` int(11) NOT NULL AUTO_INCREMENT,
  364. `invite_user_id` int(11) DEFAULT NULL,
  365. `telegram_id` bigint(20) DEFAULT NULL,
  366. `email` varchar(64) NOT NULL,
  367. `password` varchar(64) NOT NULL,
  368. `password_algo` char(10) DEFAULT NULL,
  369. `password_salt` char(10) DEFAULT NULL,
  370. `balance` int(11) NOT NULL DEFAULT '0',
  371. `discount` int(11) DEFAULT NULL,
  372. `commission_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0: system 1: period 2: onetime',
  373. `commission_rate` int(11) DEFAULT NULL,
  374. `commission_balance` int(11) NOT NULL DEFAULT '0',
  375. `t` int(11) NOT NULL DEFAULT '0',
  376. `u` bigint(20) NOT NULL DEFAULT '0',
  377. `d` bigint(20) NOT NULL DEFAULT '0',
  378. `transfer_enable` bigint(20) NOT NULL DEFAULT '0',
  379. `banned` tinyint(1) NOT NULL DEFAULT '0',
  380. `is_admin` tinyint(1) NOT NULL DEFAULT '0',
  381. `last_login_at` int(11) DEFAULT NULL,
  382. `is_staff` tinyint(1) NOT NULL DEFAULT '0',
  383. `last_login_ip` int(11) DEFAULT NULL,
  384. `uuid` varchar(36) NOT NULL,
  385. `group_id` int(11) DEFAULT NULL,
  386. `plan_id` int(11) DEFAULT NULL,
  387. `speed_limit` int(11) DEFAULT NULL,
  388. `remind_expire` tinyint(4) DEFAULT '1',
  389. `remind_traffic` tinyint(4) DEFAULT '1',
  390. `token` char(32) NOT NULL,
  391. `expired_at` bigint(20) DEFAULT '0',
  392. `remarks` text,
  393. `created_at` int(11) NOT NULL,
  394. `updated_at` int(11) NOT NULL,
  395. PRIMARY KEY (`id`),
  396. UNIQUE KEY `email` (`email`)
  397. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  398. -- 2023-05-23 17:01:12