Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
9f80640c5c
2 changed files with 4 additions and 2 deletions
|
@ -21,7 +21,7 @@ public class DatabaseLoader implements IDataLoader {
|
||||||
if(ThemeParkConnector.getInstance().getAPI().getConfigurationManager().getBoolean(StorageKey.ACTIONFOTO)) {
|
if(ThemeParkConnector.getInstance().getAPI().getConfigurationManager().getBoolean(StorageKey.ACTIONFOTO)) {
|
||||||
service.execute(
|
service.execute(
|
||||||
"remote",
|
"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
|
null
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,3 +16,5 @@ sign:
|
||||||
scan:
|
scan:
|
||||||
name: '[TicketScan]'
|
name: '[TicketScan]'
|
||||||
title: '&f[&6&lTicketScan&f]'
|
title: '&f[&6&lTicketScan&f]'
|
||||||
|
|
||||||
|
actionfoto: false
|
||||||
|
|
Reference in a new issue