sencha-web/schema.sql

7 lines
138 B
MySQL
Raw Normal View History

2013-01-10 20:25:39 +00:00
drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title string not null,
text string not null
);