Last active
August 29, 2015 14:24
-
-
Save kevin-snippet/d0f0deff563bb61d63c3 to your computer and use it in GitHub Desktop.
sql: create_table_template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP TABLE IF EXISTS table_name; | |
CREATE TABLE user ( | |
var1 varchar(155) PRIMARY KEY, | |
var2 int , | |
var3 varchar(155), | |
var4 varchar(155), | |
var5 varchar(155), | |
updated datetime | |
) DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment