moved everything up a directory

This commit is contained in:
tidusjar 2016-02-26 14:31:28 +00:00
commit 9a78f790a6
76 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,15 @@
--Any DB changes need to be made in this file.
CREATE TABLE IF NOT EXISTS User
(
Id INTEGER PRIMARY KEY AUTOINCREMENT,
User varchar(50) NOT NULL ,
UserName varchar(50) NOT NULL,
Password varchar(100) NOT NULL
);
CREATE TABLE IF NOT EXISTS Settings
(
Id INTEGER PRIMARY KEY AUTOINCREMENT,
Port INTEGER NOT NULL
);