Navigation Menu

Skip to content

Commit

Permalink
Use lower_case for type name
Browse files Browse the repository at this point in the history
Because it is not a SQL keyword.
  • Loading branch information
kou committed Nov 19, 2012
1 parent 5f47a90 commit dadb629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -2,7 +2,7 @@ DROP TABLE IF EXISTS diaries;
SET NAMES utf8;
CREATE TABLE diaries (
created_at datetime,
title VARCHAR(256),
title varchar(256),
KEY created_at_key(created_at)
) DEFAULT CHARSET=utf8;
INSERT INTO diaries VALUES ("1000-01-01 00:00:00", "The start");
Expand Down
Expand Up @@ -24,7 +24,7 @@ DROP TABLE IF EXISTS diaries;
SET NAMES utf8;
CREATE TABLE diaries (
created_at datetime,
title VARCHAR(256),
title varchar(256),
KEY created_at_key(created_at)
) DEFAULT CHARSET=utf8;

Expand Down

0 comments on commit dadb629

Please sign in to comment.