Skip to content

Commit

Permalink
chore: break_category -> block_category
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Jun 30, 2023
1 parent 6c35ea8 commit ab68cb6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ USE seichiassist;

CREATE TABLE player_break_preference(
uuid CHAR(36) NOT NULL,
break_category ENUM('Chest', 'MadeFromNetherQuartz') NOT NULL,
block_category ENUM('Chest', 'MadeFromNetherQuartz') NOT NULL,
do_break BOOL NOT NULL DEFAULT TRUE,
PRIMARY KEY(uuid, break_category),
PRIMARY KEY(uuid, block_category),
INDEX index_player_break_preference_on_uuid (uuid)
);

0 comments on commit ab68cb6

Please sign in to comment.