mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
Did you mean to remove these?
This commit is contained in:
parent
e05636a722
commit
3a17e1ad30
@ -100,6 +100,12 @@ public class DBFunc {
|
|||||||
"`user_uuid` VARCHAR(40) NOT NULL" +
|
"`user_uuid` VARCHAR(40) NOT NULL" +
|
||||||
") ENGINE=InnoDB DEFAULT CHARSET=utf8"
|
") ENGINE=InnoDB DEFAULT CHARSET=utf8"
|
||||||
);
|
);
|
||||||
|
stmt.addBatch(
|
||||||
|
"CREATE TABLE IF NOT EXISTS `plot_helpers` (" +
|
||||||
|
"`plot_plot_id` INT(11) NOT NULL," +
|
||||||
|
"`user_uuid` VARCHAR(40) NOT NULL" +
|
||||||
|
") ENGINE=InnoDB DEFAULT CHARSET=utf8"
|
||||||
|
);
|
||||||
stmt.addBatch(
|
stmt.addBatch(
|
||||||
"CREATE TABLE IF NOT EXISTS `plot_settings` (" +
|
"CREATE TABLE IF NOT EXISTS `plot_settings` (" +
|
||||||
" `plot_plot_id` INT(11) NOT NULL," +
|
" `plot_plot_id` INT(11) NOT NULL," +
|
||||||
@ -135,6 +141,12 @@ public class DBFunc {
|
|||||||
"`user_uuid` VARCHAR(40) NOT NULL" +
|
"`user_uuid` VARCHAR(40) NOT NULL" +
|
||||||
")"
|
")"
|
||||||
);
|
);
|
||||||
|
stmt.addBatch(
|
||||||
|
"CREATE TABLE IF NOT EXISTS `plot_helpers` (" +
|
||||||
|
"`plot_plot_id` INT(11) NOT NULL," +
|
||||||
|
"`user_uuid` VARCHAR(40) NOT NULL" +
|
||||||
|
")"
|
||||||
|
);
|
||||||
stmt.addBatch(
|
stmt.addBatch(
|
||||||
"CREATE TABLE IF NOT EXISTS `plot_settings` (" +
|
"CREATE TABLE IF NOT EXISTS `plot_settings` (" +
|
||||||
" `plot_plot_id` INT(11) NOT NULL," +
|
" `plot_plot_id` INT(11) NOT NULL," +
|
||||||
|
Loading…
Reference in New Issue
Block a user