Escaped 'text' keyword in column name.

This commit is contained in:
Matt Skone 2013-10-15 09:17:19 -07:00
parent 5d20501604
commit 1df0f2dc1c

View file

@ -2,5 +2,5 @@ drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title text not null,
text text not null
'text' text not null
);