Advertisement
Guest User

Untitled

a guest
Nov 24th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.34 KB | None | 0 0
  1. CREATE TABLE mybb_adminlog (
  2. uid int(10) unsigned NOT NULL DEFAULT '0',
  3. ipaddress varbinary(16) NOT NULL DEFAULT '',
  4. dateline int(10) unsigned NOT NULL DEFAULT '0',
  5. module varchar(50) NOT NULL DEFAULT '',
  6. action varchar(50) NOT NULL DEFAULT '',
  7. data text NOT NULL,
  8. KEY module (module,action),
  9. KEY uid (uid)
  10. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement