Skip to content

Instantly share code, notes, and snippets.

@tamert
Last active October 18, 2022 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamert/66dcf9dc3dd80ff9a33be4b9ce14de57 to your computer and use it in GitHub Desktop.
Save tamert/66dcf9dc3dd80ff9a33be4b9ce14de57 to your computer and use it in GitHub Desktop.
CREATE TABLE `coffees`
(
`id` INT(11) PRIMARY KEY AUTO_INCREMENT NOT NULL,
`title` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci,
`slug` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci,
`description` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci,
`status` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT '',
`deleted_at` TIMESTAMP NULL DEFAULT NULL
) ENGINE = InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment