forked from orbit-oss/flask
Changing string to text in schema files
This commit is contained in:
parent
2af0ffaef6
commit
cc82feb084
3 changed files with 8 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue