Merge pull request #655 from oliversong/master

SQLite doesn't recognize data type "string"
This commit is contained in:
Armin Ronacher 2012-12-27 07:23:30 -08:00
commit ab3d9d12c6
3 changed files with 8 additions and 8 deletions

View file

@ -13,8 +13,8 @@ the just created `flaskr` folder:
drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title string not null,
text string not null
title text not null,
text text not null
);
This schema consists of a single table called `entries` and each row in