Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.46 KB | None | 0 0
  1. CREATE TABLE `litebans_history` (
  2.   `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  3.   `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  4.   `name` varchar(48) NOT NULL,
  5.   `uuid` varchar(108) NOT NULL,
  6.   `ip` varchar(135) NOT NULL,
  7. PRIMARY KEY `PRIMARY` (`id`),
  8. UNIQUE KEY `id` (`id`),
  9. KEY `idx_litebans_history_uuid` (`uuid`),
  10. KEY `idx_litebans_history_name` (`name`),
  11. KEY `idx_litebans_history_ip` (`ip`)
  12. ) ENGINE=InnoDB;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement