This commit is contained in:
2016-03-01 17:54:50 -05:00
parent a4b3587858
commit 9e7126ad9b
14 changed files with 787 additions and 0 deletions

View File

@ -0,0 +1,6 @@
CREATE TABLE games (
id INTEGER DEFAULT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT DEFAULT NULL,
switch TEXT DEFAULT NULL,
outcome TEXT DEFAULT NULL
);