You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
create table Log
|
|
(
|
|
id INTEGER
|
|
primary key autoincrement,
|
|
IP text not null,
|
|
City text not null,
|
|
State text not null,
|
|
Country text not null,
|
|
DateTime date
|
|
);
|
|
|
|
create table plays
|
|
(
|
|
id INTEGER
|
|
primary key autoincrement,
|
|
UserID text not null,
|
|
UserName text not null,
|
|
IP text not null,
|
|
PlayerPick text not null,
|
|
ComputerPick text not null,
|
|
Result text not null,
|
|
DateTime date
|
|
);
|
|
|
|
create table users
|
|
(
|
|
id INTEGER
|
|
primary key autoincrement,
|
|
UserName text not null,
|
|
Wins int default 0 not null,
|
|
Loses int default 0 not null,
|
|
Ties int default 0 not null,
|
|
IP text not null,
|
|
City text not null,
|
|
State text not null,
|
|
Country text not null,
|
|
CountryCode text not null,
|
|
FlagURL text not null,
|
|
DateCreated date,
|
|
DateUpdated date,
|
|
DateDeleted date
|
|
);
|
|
|
|
create unique index users_UserName
|
|
on users (UserName);
|
|
|
|
|