[sql] users

Viewer

  1. CREATE TABLE `users` (
  2.         `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  3.         `email` VARCHAR(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  4.         `crdate` INT UNSIGNED DEFAULT '0' COMMENT 'Date of creation',
  5.         UNIQUE KEY `ix_email` (`email`) USING BTREE,
  6.         PRIMARY KEY (`id`)
  7. ) ENGINE=InnoDB;

Editor

You can edit this paste and save as new:


File Description
  • users
  • Paste Code
  • 10 Apr-2018
  • 299 Bytes
You can Share it: