Database sample data, make target and go code

This commit is contained in:
Imbus 2024-03-18 22:07:02 +01:00
parent 47b60038b4
commit c31f145c35
4 changed files with 64 additions and 0 deletions

View file

@ -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);