Fix a typo
This commit is contained in:
parent
aa9f0c5235
commit
a85c032253
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ public class DatabaseMigrations
|
||||||
migrations.add(builder()
|
migrations.add(builder()
|
||||||
.withTableID("blocks")
|
.withTableID("blocks")
|
||||||
.withVersion(3)
|
.withVersion(3)
|
||||||
.withMigrationAction(DatabaseWrapper.get().prepareStatement("ALTER TABLE `savedBlocks`.`blocks` ADD UNIQUE (`posX`, `posY`, `posZ`); ")));
|
.withMigrationAction(DatabaseWrapper.get().prepareStatement("ALTER TABLE `blocks` ADD UNIQUE (`posX`, `posY`, `posZ`); ")));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue