-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added mock data #22
Added mock data #22
Conversation
backend/db/migrations/init.sql
Outdated
(1, 'user1', 'ACCEPTED', 'user2', NOW()), | ||
(2, 'user3', 'NOTIFIED', 'user3', NOW()), | ||
(3, 'user4', 'DECLINED', 'user4', NOW()), | ||
(4, 'user2', 'COMPLETE', 'user1', NOW()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assignment status is only Accepted | Notified | Declined
(4, 4, 'Household') | ||
; | ||
|
||
INSERT INTO files (file_id, file_name, group_id, upload_by, upload_date, file_size, task_id) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andrewcaplan1 we may not want to insert into this table? if we wanted file viewing I think this would be cool later but alot of this inserted stuff would need to come from stuff alr on aws
Description
Link to Ticket
Added mock data for every table (provided by Bard).
How Has This Been Tested?
No direct tests since it's just adding data to DB.
Checklist