Started creating database code

This commit is contained in:
Polonkai Gergely
2012-03-21 14:59:39 +00:00
parent b29f7c9063
commit 98967395c4
4 changed files with 31 additions and 1 deletions

7
sql/players.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE TABLE players (
id integer primary key,
login varchar(50) not null unique,
password varchar(50),
email varchar(150) not null unique
);