Skip to content

Commit

Permalink
Merge pull request #1857 from GiganticMinecraft/fix/removeNotNull
Browse files Browse the repository at this point in the history
unknown_player_donationデーブルのuuidカラムのNOTNULL制約を外す
  • Loading branch information
Lucky3028 authored Feb 4, 2023
2 parents 12147c8 + 58e0a8b commit 884a2a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ USE seichiassist;

CREATE TABLE IF NOT EXISTS unknown_player_donation(
id INT AUTO_INCREMENT NOT NULL,
uuid CHAR(36) NOT NULL,
uuid CHAR(36),
effect_name VARCHAR(20) NOT NULL,
use_points INT NOT NULL,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
Expand Down

0 comments on commit 884a2a3

Please sign in to comment.