Skip to content

Instantly share code, notes, and snippets.

@codeguy
Created September 20, 2013 13:48
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 codeguy/6637831 to your computer and use it in GitHub Desktop.
Save codeguy/6637831 to your computer and use it in GitHub Desktop.
MySQL Create Table
DROP TABLE IF EXISTS table_name;
CREATE TABLE table_name (
) ENGINE=INNODB DEFAULT CHARSET=UTF8 COLLATE=UTF8_UNICODE_CI;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment