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:
parent
9d42948abe
commit
815469f6ae
7
cookbook/015/hodgepodge/db/dbinit.sql
Normal file
7
cookbook/015/hodgepodge/db/dbinit.sql
Normal 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)
|
||||
);
|
Loading…
Reference in New Issue
Block a user