flask/examples/flaskr/schema.sql
2012-12-26 00:05:18 -05:00

6 lines
140 B
SQL

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