begin notes system

store task id
This commit is contained in:
Taah
2022-04-06 17:38:15 -07:00
parent f62e0a42d1
commit f2ee3bf7a5
8 changed files with 185 additions and 33 deletions

View File

@ -78,9 +78,9 @@ public class SQLConnection extends PlexBase
");").execute();
con.prepareStatement("CREATE TABLE IF NOT EXISTS `notes` (" +
"`uuid` VARCHAR(46) NOT NULL, " +
"`name` VARCHAR(18), " +
"`written_by` VARCHAR(16), " +
"`note` VARCHAR(2000), " +
"`timestamp` BIGINT" +
");").execute();
}
catch (SQLException throwables)