Skip to content

Commit

Permalink
chore: V1.19.0 ブロック破壊の抑制トリガー設定を保存するマイグレーションファイルを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroma6666 committed Sep 14, 2024
1 parent d3e457b commit db7b45e
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
USE seichiassist;

CREATE TABLE player_break_trigger_preference(
uuid CHAR(36) NOT NULL,
trigger_category ENUM('ManaFullyConsumed') NOT NULL,
do_not_break BOOL NOT NULL DEFAULT FALSE,
PRIMARY KEY(uuid, trigger_category),
INDEX index_player_break_trigger_preference_on_uuid (uuid)
);

0 comments on commit db7b45e

Please sign in to comment.