-
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.
Merge pull request #14 from Serveis-Neby/fix/mock-data-insert-service
fix: changed formatting
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ INSERT INTO users (community_id, username, email, password, type, balance) VALUE | |
((SELECT id FROM communities WHERE code = '12345678'), 'JaneDoe', '[email protected]', 'Test1234!', 'neighbor', 0), | ||
((SELECT id FROM communities WHERE code = '12345678'), 'TomSmith', '[email protected]', 'Test1234!', 'neighbor', 253), | ||
((SELECT id FROM communities WHERE code = '12345678'), 'AmyAdams', '[email protected]', 'Test1234!', 'neighbor', 741); | ||
|
||
INSERT INTO services (creator_id, title, description, price, type) VALUES | ||
((SELECT id FROM users WHERE email = '[email protected]'), 'Do Laundry', 'Hey there! Looking for someone to lend a hand with laundry duty. My washer just decided to call it quits, and I''m drowning in dirty clothes.', 10, 'requested'), | ||
((SELECT id FROM users WHERE email = '[email protected]'), 'Walk Dogs', 'If you''re in need of a helping hand (or paw) to walk your furry friend, I''m your person! With a passion for pups and plenty of free time, I''m available to take your canine companion on a stroll around the neighborhood.', 15, 'offered'), | ||
((SELECT id FROM users WHERE email = '[email protected]'), 'Repair Laptop', 'Anyone out there handy with laptops? Mine''s acting up and I''m lost without it. If you know your way around hardware and software, I''d really appreciate a hand getting this thing back in action.', 45, 'requested'); | ||
((SELECT id FROM users WHERE email = '[email protected]'), 'Do Laundry', 'Hey there! Looking for someone to lend a hand with laundry duty. My washer just decided to call it quits, and I''m drowning in dirty clothes.', 10, 'requested'), | ||
((SELECT id FROM users WHERE email = '[email protected]'), 'Walk Dogs', 'If you''re in need of a helping hand (or paw) to walk your furry friend, I''m your person! With a passion for pups and plenty of free time, I''m available to take your canine companion on a stroll around the neighborhood.', 15, 'offered'), | ||
((SELECT id FROM users WHERE email = '[email protected]'), 'Repair Laptop', 'Anyone out there handy with laptops? Mine''s acting up and I''m lost without it. If you know your way around hardware and software, I''d really appreciate a hand getting this thing back in action.', 45, 'requested'); |