Update schema to include default contents sql file.
This commit is contained in:
@@ -73,18 +73,3 @@ ON pageviews(created_at);
|
||||
CREATE INDEX IF NOT EXISTS idx_pageviews_account_time
|
||||
ON pageviews(account_id, created_at);
|
||||
|
||||
INSERT INTO users (username, email, password) VALUES
|
||||
('bender', 'dan@danchadwickdesign.com', 'aa7101dc6e2fe541ac5a44352c24d15052723b70ceecd5fc6d7fe71d0721c9aa');
|
||||
|
||||
INSERT INTO permissions (user_id, permission) VALUES
|
||||
(1, 'admin');
|
||||
|
||||
INSERT INTO accounts (account_id) VALUES ("3116a529b262b9f3cc08a4ba87d5d833");
|
||||
|
||||
INSERT INTO user_accounts (user_id, account_id) VALUES (1,"3116a529b262b9f3cc08a4ba87d5d833");
|
||||
|
||||
INSERT INTO tasks (user_id, task, description, status, external_url) VALUES
|
||||
(1, 'Buy milk', 'this task requires you to go to the store and buy milk.', 'pending', 'https://www.google.com');
|
||||
|
||||
INSERT INTO tasks (user_id, task, description, status, external_url) VALUES
|
||||
(1, 'Buy eggs', 'this task requires you to go to the store and buy eggs.', 'pending', 'https://www.google.com');
|
||||
|
||||
Reference in New Issue
Block a user