i have no idea what im doing

This commit is contained in:
2022-04-06 19:18:12 -05:00
parent 2105f51b44
commit f62e0a42d1
2 changed files with 50 additions and 0 deletions

View File

@ -76,6 +76,12 @@ public class SQLConnection extends PlexBase
"`active` BOOLEAN, " +
"`endDate` BIGINT" +
");").execute();
con.prepareStatement("CREATE TABLE IF NOT EXISTS `notes` (" +
"`uuid` VARCHAR(46) NOT NULL, " +
"`name` VARCHAR(18), " +
"`written_by` VARCHAR(16), " +
"`note` VARCHAR(2000), " +
");").execute();
}
catch (SQLException throwables)
{