forked from orbit-oss/flask
6 lines
142 B
SQL
6 lines
142 B
SQL
drop table if exists entries;
|
|
create table entries (
|
|
id integer primary key autoincrement,
|
|
title text not null,
|
|
'text' text not null
|
|
);
|