Browse Source

Escaped 'text' keyword in column name.

pull/889/head
Matt Skone 11 years ago
parent
commit
1df0f2dc1c
  1. 2
      examples/flaskr/schema.sql

2
examples/flaskr/schema.sql

@ -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
);

Loading…
Cancel
Save