Increased the default serialized_entity field size.

This commit is contained in:
Brianna 2020-10-26 09:23:40 -05:00
parent ad67dec11a
commit 9264013afc
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class _2_EntityStacks extends DataMigration {
statement.execute("CREATE TABLE " + tablePrefix + "stacked_entities (" +
"uuid VARCHAR(36) PRIMARY KEY NOT NULL," +
"host INTEGER NOT NULL," +
"serialized_entity VARBINARY(255) NOT NULL" +
"serialized_entity VARBINARY(999) NOT NULL" +
")");
}
}