-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a49c8d8
commit f14c393
Showing
4 changed files
with
39 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,18 +16,18 @@ VALUES ('Smith', 'Lora', '[email protected]', '905-323-1324', '{}', 'Mellany M | |
('Regal', 'Ross', '[email protected]', '225-333-1537', '{}', 'Tina Broth', '{}', 2); | ||
|
||
INSERT INTO shopping_list_items (item_priority, client_id, item_type) | ||
VALUES (10, 1, 1),(4, 2, 1),(9, 2, 3); | ||
VALUES (10, 1, 1), (4, 2, 1), (9, 2, 3); | ||
|
||
INSERT INTO item_inventory (id, item_type, image, donor_email, added_by) | ||
INSERT INTO item_inventory (item_type, image, donor_email, added_by) | ||
VALUES | ||
(1, 1, '{}', '[email protected]', 'Samantha H'), | ||
(2, 1, '{}', '[email protected]', 'Matheiw Matherr'), | ||
(3, 1, '{}', '[email protected]', 'Talia T'), | ||
(4, 2, '{}', '[email protected]', 'Jonnie K'), | ||
(5, 3, '{}', '[email protected]', 'Samantha H'); | ||
|
||
INSERT INTO item_status (status, item_inventory_id, shopping_list_item_id) | ||
VALUES ('matched', 5, 3); | ||
(1, '{}', '[email protected]', 'Samantha H'), | ||
(1, '{}', '[email protected]', 'Matheiw Matherr'), | ||
(1, '{}', '[email protected]', 'Talia T'), | ||
(2, '{}', '[email protected]', 'Jonnie K'), | ||
(3, '{}', '[email protected]', 'Samantha H'); | ||
|
||
INSERT INTO item_match (item_inventory_id, shopping_list_item_id) | ||
VALUES (5, 3); | ||
|
||
INSERT INTO referrals_form_inputs | ||
VALUES (1, 'First name', 'shortAnswer', 'FALSE'); | ||
|