Skip to content

Instantly share code, notes, and snippets.

@yutakahashi114
Created September 29, 2019 05:08
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 yutakahashi114/6f4ba6bef86dee7509d45c93324e832e to your computer and use it in GitHub Desktop.
Save yutakahashi114/6f4ba6bef86dee7509d45c93324e832e to your computer and use it in GitHub Desktop.
create table IF not exists `users`
(
`id` INT(20) AUTO_INCREMENT,
`first_name` VARCHAR(20) NOT NULL,
`last_name` VARCHAR(20) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment