Database sample data, make target and go code
This commit is contained in:
parent
47b60038b4
commit
c31f145c35
4 changed files with 64 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
INSERT OR IGNORE INTO users (username, password) VALUES
|
||||
('admin', 'password'),
|
||||
('user', 'password');
|
||||
|
||||
INSERT OR IGNORE INTO projects (name, description, owner_user_id) VALUES
|
||||
('Project 1', 'Description 1', 1),
|
||||
('Project 2', 'Description 2', 2);
|
Loading…
Add table
Add a link
Reference in a new issue