sencha-web/schema.sql

7 lines
138 B
SQL

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