Fix SQL table and column being incorrectly swapped

Signed-off-by: Thomas Bastiani <thom@codehawks.eu>
This commit is contained in:
Thomas Bastiani
2016-11-30 15:16:23 -07:00
committed by Andrew DeMaria
parent d6999baa2d
commit 7c5d8088dc
@@ -39,7 +39,7 @@ public class Schema62 extends Schema {
template.execute("insert into version values (27)"); template.execute("insert into version values (27)");
} }
if (!columnExists(template, "player", "m3u_bom_enabled")) { if (!columnExists(template, "m3u_bom_enabled", "player")) {
LOG.info("Database column 'player.m3u_bom_enabled' not found. Creating it."); LOG.info("Database column 'player.m3u_bom_enabled' not found. Creating it.");
template.execute("alter table player add m3u_bom_enabled boolean default false not null"); template.execute("alter table player add m3u_bom_enabled boolean default false not null");
LOG.info("Database column 'player.m3u_bom_enabled' was added successfully."); LOG.info("Database column 'player.m3u_bom_enabled' was added successfully.");