flask/examples/flaskr/schema.sql

7 lines
140 B
MySQL
Raw Normal View History

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