Increase actor_name field length to account for changes to logging

This commit is contained in:
Luck
2017-11-02 19:28:49 +00:00
Unverified
parent fad8a38bdf
commit c20b91d5ea
6 changed files with 6 additions and 6 deletions
@@ -198,7 +198,7 @@ public class SqlDao extends AbstractDao {
// migrations
try (Connection connection = provider.getConnection()) {
try (Statement s = connection.createStatement()) {
s.execute(prefix.apply("ALTER TABLE {prefix}actions MODIFY COLUMN actor_name VARCHAR(36)"));
s.execute(prefix.apply("ALTER TABLE {prefix}actions MODIFY COLUMN actor_name VARCHAR(100)"));
s.execute(prefix.apply("ALTER TABLE {prefix}actions MODIFY COLUMN action VARCHAR(300)"));
}
}