Advertisement
polectron

SQL Registro

Jan 11th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.49 KB | None | 0 0
  1. CREATE TABLE `registro` (
  2.   `id` int(11) NOT NULL PRIMARY KEY,
  3.   `player_id` text CHARACTER SET utf8 NOT NULL,
  4.   `player_name` text CHARACTER SET utf8 NOT NULL,
  5.   `type` text CHARACTER SET utf8 NOT NULL,
  6.   `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  7.   `info` text CHARACTER SET utf8 NOT NULL,
  8.   `location` text COLLATE utf8_unicode_ci NOT NULL,
  9.   `equipo` text COLLATE utf8_unicode_ci NOT NULL
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement