mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Fixed comment update
This commit is contained in:
parent
689583334d
commit
c44bf77f32
@ -589,16 +589,26 @@ public class SQLManager implements AbstractDB {
|
|||||||
rs = data.getColumns(null, null, this.prefix + "plot_comments", "hashcode");
|
rs = data.getColumns(null, null, this.prefix + "plot_comments", "hashcode");
|
||||||
if (!rs.next()) {
|
if (!rs.next()) {
|
||||||
rs.close();
|
rs.close();
|
||||||
final Statement statement = this.connection.createStatement();
|
try {
|
||||||
statement.addBatch("DROP TABLE `" + this.prefix + "plot_comments`");
|
final Statement statement = this.connection.createStatement();
|
||||||
if (PlotSquared.getMySQL() != null) {
|
statement.addBatch("ALTER IGNORE TABLE `" + this.prefix + "plot_comments` ADD `inbox` VARCHAR(11) DEFAULT `public`");
|
||||||
statement.addBatch("CREATE TABLE IF NOT EXISTS `" + this.prefix + "plot_comments` (" + "`world` VARCHAR(40) NOT NULL, `hashcode` INT(11) NOT NULL," + "`comment` VARCHAR(40) NOT NULL," + "`inbox` VARCHAR(40) NOT NULL," + "`timestamp` INT(11) NOT NULL," + "`sender` VARCHAR(40) NOT NULL" + ") ENGINE=InnoDB DEFAULT CHARSET=utf8");
|
statement.addBatch("ALTER IGNORE TABLE `" + this.prefix + "plot_comments` ADD `timestamp` INT(11) DEFAULT 0");
|
||||||
|
statement.addBatch("ALTER TABLE `" + this.prefix + "plot` DROP `tier`");
|
||||||
|
statement.executeBatch();
|
||||||
|
statement.close();
|
||||||
}
|
}
|
||||||
else {
|
catch (SQLException e) {
|
||||||
statement.addBatch("CREATE TABLE IF NOT EXISTS `" + this.prefix + "plot_comments` (" + "`world` VARCHAR(40) NOT NULL, `hashcode` INT(11) NOT NULL," + "`comment` VARCHAR(40) NOT NULL," + "`inbox` VARCHAR(40) NOT NULL, `timestamp` INT(11) NOT NULL," + "`sender` VARCHAR(40) NOT NULL" + ")");
|
final Statement statement = this.connection.createStatement();
|
||||||
|
statement.addBatch("DROP TABLE `" + this.prefix + "plot_comments`");
|
||||||
|
if (PlotSquared.getMySQL() != null) {
|
||||||
|
statement.addBatch("CREATE TABLE IF NOT EXISTS `" + this.prefix + "plot_comments` (" + "`world` VARCHAR(40) NOT NULL, `hashcode` INT(11) NOT NULL," + "`comment` VARCHAR(40) NOT NULL," + "`inbox` VARCHAR(40) NOT NULL," + "`timestamp` INT(11) NOT NULL," + "`sender` VARCHAR(40) NOT NULL" + ") ENGINE=InnoDB DEFAULT CHARSET=utf8");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
statement.addBatch("CREATE TABLE IF NOT EXISTS `" + this.prefix + "plot_comments` (" + "`world` VARCHAR(40) NOT NULL, `hashcode` INT(11) NOT NULL," + "`comment` VARCHAR(40) NOT NULL," + "`inbox` VARCHAR(40) NOT NULL, `timestamp` INT(11) NOT NULL," + "`sender` VARCHAR(40) NOT NULL" + ")");
|
||||||
|
}
|
||||||
|
statement.executeBatch();
|
||||||
|
statement.close();
|
||||||
}
|
}
|
||||||
statement.executeBatch();
|
|
||||||
statement.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rs.close();
|
rs.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user