Added DB Access + Error page
This commit is contained in:
6
demos/phonebook/protected/data/schema.sql
Normal file
6
demos/phonebook/protected/data/schema.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE Contact
|
||||
(
|
||||
id INTEGER NOT NULL PRIMARY KEY,
|
||||
name VARCHAR(128) NOT NULL,
|
||||
phone VARCHAR(64) NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user