1
mirror of https://github.com/carm-outsource/TimeReward.git synced 2024-09-19 19:25:49 +00:00

修正数据库结构

This commit is contained in:
Carm Jos 2022-02-28 18:37:04 +08:00
parent 7f2f523a1b
commit 826e5ffbad

View File

@ -30,7 +30,7 @@ public class DBTables {
);
protected static final String[] TABLE_COLUMNS = new String[]{
"`id` INT NOT NULL UNSIGNED AUTO_INCREMENT UNIQUE KEY", // 排序键
"`id` INT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE KEY", // 排序键
"`uuid` VARCHAR(36) NOT NULL PRIMARY KEY COMMENT '用户UUID'", // 用户的UUID 主键
"`value` MEDIUMTEXT", // 已领取的奖励ID
"`update` DATETIME NOT NULL " +