Added mini blogging application as Flask example.

This should become the tutorial.
This commit is contained in:
Armin Ronacher 2010-04-14 16:44:29 +02:00
parent 2d9bb69272
commit c33675f025
7 changed files with 241 additions and 0 deletions

View 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
);