|
|
@@ -75,15 +75,11 @@ public class SqliteController { |
|
|
|
try {
|
|
|
|
if(connection != null) {
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
stmt.executeUpdate("DROP TABLE IF EXISTS Thing;");
|
|
|
|
stmt.executeUpdate("DROP TABLE IF EXISTS ThingList");
|
|
|
|
stmt.executeUpdate("DROP TABLE IF EXISTS ThingListToThing");
|
|
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);");
|
|
|
|
stmt.executeUpdate("CREATE TABLE ThingList (ListId INTEGER PRIMARY KEY, Name) ON DELETE CASCADE;");
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX idx1 ON ThingList(Name)");
|
|
|
|
stmt.executeUpdate("CREATE TABLE ThingListToThing (ListId, ThingId, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));");
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX idx2 ON ThingListToThing(ListId, ThingId)");
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);");
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingList (ListId INTEGER PRIMARY KEY, Name);");
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx1 ON ThingList(Name)");
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingListToThing (ListId, ThingId, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));");
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx2 ON ThingListToThing(ListId, ThingId)");
|
|
|
|
} else {
|
|
|
|
System.err.println("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
}
|
|
|
|