Skip to content

Instantly share code, notes, and snippets.

@kevin-snippet
Last active August 29, 2015 14:24
Show Gist options
  • Save kevin-snippet/d0f0deff563bb61d63c3 to your computer and use it in GitHub Desktop.
Save kevin-snippet/d0f0deff563bb61d63c3 to your computer and use it in GitHub Desktop.
sql: create_table_template
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