forked from orbit-oss/flask
Added mini blogging application as Flask example.
This should become the tutorial.
This commit is contained in:
parent
2d9bb69272
commit
c33675f025
7 changed files with 241 additions and 0 deletions
6
examples/flaskr/schema.sql
Normal file
6
examples/flaskr/schema.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
drop table if exists entries;
|
||||
create table entries (
|
||||
id integer primary key autoincrement,
|
||||
title string not null,
|
||||
text string not null
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue