Updated datatype of actionfotos image column
This commit is contained in:
parent
951be30edf
commit
3ad3b5c5c6
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ public class DatabaseLoader implements IDataLoader {
|
|||
if(ThemeParkConnector.getInstance().getAPI().getConfigurationManager().getBoolean(StorageKey.ACTIONFOTO)) {
|
||||
service.execute(
|
||||
"remote",
|
||||
"CREATE TABLE IF NOT EXISTS actionfotos (id BIGINT(20) NOT NULL AUTO_INCREMENT, uuid VARCHAR(256) NOT NULL, ride VARCHAR(256) NOT NULL, base64 BLOB NOT NULL, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(), UNIQUE(uuid, ride), PRIMARY KEY(id))",
|
||||
"CREATE TABLE IF NOT EXISTS actionfotos (id BIGINT(20) NOT NULL AUTO_INCREMENT, uuid VARCHAR(256) NOT NULL, ride VARCHAR(256) NOT NULL, base64 LONGBLOB NOT NULL, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(), UNIQUE(uuid, ride), PRIMARY KEY(id))",
|
||||
null
|
||||
);
|
||||
}
|
||||
|
|
Reference in a new issue