flask/examples/flaskr/schema.sql

7 lines
142 B
MySQL
Raw Normal View History

drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title text not null,
2013-10-15 09:17:19 -07:00
'text' text not null
);