Fix a typo

This commit is contained in:
zontreck 2024-04-30 15:34:34 -07:00
parent aa9f0c5235
commit a85c032253

View file

@ -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`); ")));