Skip to content

Instantly share code, notes, and snippets.

@tlkshadow
Created December 8, 2019 17:22
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 tlkshadow/22cbb09dde45071e193e6fd65d64a914 to your computer and use it in GitHub Desktop.
Save tlkshadow/22cbb09dde45071e193e6fd65d64a914 to your computer and use it in GitHub Desktop.
CREATE TABLE `products` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci,
`status` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT '',
`is_deleted` TINYINT(1) DEFAULT '0'
) ENGINE=InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment