Skip to content

Instantly share code, notes, and snippets.

@KimiyukiYamauchi
Created December 20, 2013 11:58
Show Gist options
  • Select an option

  • Save KimiyukiYamauchi/8053793 to your computer and use it in GitHub Desktop.

Select an option

Save KimiyukiYamauchi/8053793 to your computer and use it in GitHub Desktop.
drop table if exists bbs;
create table bbs
(post_id int primary key,
name varchar(20) ,
comment varchar(400),
time datetime
) engine=innodb;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment