ayami123

Create table

Jan 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. CREATE TABLE `images` (
  2. `hash` CHAR(32) NOT NULL PRIMARY KEY,
  3. `name` VARCHAR(128) NOT NULL UNIQUE,
  4. `mime` VARCHAR(128) NOT NULL,
  5. `image` BLOB
  6. )ENGINE=INNODB CHARSET=UTF8MB4 COLLATE=utf8mb4_unicode_ci;
Add Comment
Please, Sign In to add comment