KimChoJapFan

Rock, Paper, Scissors: database.sql

Sep 28th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.20 KB | None | 0 0
  1. create table results (
  2.     id int not null auto_increment,
  3.     username varchar(255) not null,
  4.     passcode varchar(255) not null,
  5.     date varchar(255) not null,
  6.     result varchar(1) not null,
  7.     primary key(id));
Add Comment
Please, Sign In to add comment