adding a chunk o sql for 15.6. wanted to skip ahead to 15.22, but too many missing bits :-/

This commit is contained in:
Dan Buch 2011-08-09 21:04:19 -04:00
parent 9d42948abe
commit 815469f6ae

View File

@ -0,0 +1,7 @@
DROP TABLE IF EXISTS 'people';
CREATE TABLE 'people' (
'id' INTEGER PRIMARY KEY ASC AUTOINCREMENT,
'name' VARCHAR(255),
'email' VARCHAR(255)
);