flask/examples/flaskr/schema.sql
Armin Ronacher c33675f025 Added mini blogging application as Flask example.
This should become the tutorial.
2010-04-14 16:44:29 +02:00

6 lines
144 B
SQL

drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title string not null,
text string not null
);