Advertisement
clark

CREATE TABLE IF NOT EXISTS `bans` (

Jul 22nd, 2011
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `bans` (
  2. `admin` text NOT NULL,
  3. `name` text NOT NULL,
  4. `steamid` text NOT NULL,
  5. `ip` int(11) NOT NULL,
  6. `reason` text NOT NULL,
  7. `time` int(11) NOT NULL
  8. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement