Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions server/server/database/test_data/sponsor_dummy.sql
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
INSERT INTO sponsors (fname, lname, company, division, email, phone)
INSERT INTO sponsors (fname, lname, company, division, email, phone, type)
VALUES
('Michael', 'Anderson', 'GrowEasy Inc.', NULL, '[email protected]', '+1 555 123 456'),
('Thomas', 'Baker', 'Tech Titans', 'Research', '[email protected]', '+1 555 555 555'),
('Joseph', 'Smith', 'Veridian Systems', 'Development', '[email protected]', '+1 555 555 66666'),
('Philip', 'Martin', 'Redpine Group', 'Marketing', '[email protected]', '555-7777'),
('Sarah', 'Williams', 'SmartSpark Industries', NULL, '[email protected]', '+1 565 565 56567'),
('Damian', 'Keller', 'Cobalt Edge', NULL, '[email protected]', '+1 333 333 33'),
('William', 'Turner', 'Silverline Tech', NULL, '[email protected]', '+1 111 111 11112'),
('Andrew', 'Kim', 'Orionis Ventures', NULL, '[email protected]', '111-111-111'),
('Kenneth', 'Lambert', 'BuzzBoost Corporation', NULL, '[email protected]', '+1 111 111 111111'),
('Emily', 'Foster', 'Skyward Innovations', NULL, '[email protected]', '+1 111 111 11'),
('Isabella', 'Brooks', 'Pinnacle Forge', NULL, '[email protected]', '+1 111 111 11113'),
('Morgan', 'Davis', 'Aventisys', NULL, '[email protected]', '111-1111'),
('Evelyn', 'Moore', 'Datara', NULL, '[email protected]', '+1 111 111 1111111'),
('Gregory', 'Parker', 'Progressorix', NULL, '[email protected]', '+1 111 111 1'),
('Charlotte', 'Peterson', 'Completium', NULL, '[email protected]', '+1 111 111 111'),
('Timothy', 'Thompson', 'Testify Labs', 'QA', '[email protected]', '+1 111 111 111111'),
('Joel', 'Simpson', 'ApplicaSoft', 'Software', '[email protected]', '+1 111 111 1111'),
('Phoebe', 'Marshall', 'Marketify', NULL, '[email protected]', '+1 222 222 22'),
('Damon', 'Knight', 'Lenara', NULL, '[email protected]', '+1 444 444 444444'),
('Willard', 'Taylor', 'Twelvia', NULL, '[email protected]', '+1 333 333 333'),
('Andrea', 'Klein', 'Twentium', NULL, '[email protected]', '+1 555 555 555555'),
('Kendall', 'Lambert', 'Trionyx', NULL, '[email protected]', '+1 777 777 77'),
('Fiona', 'Lewis', 'Fortivio', NULL, '[email protected]', '888-888-888888')
('Michael', 'Anderson', 'GrowEasy Inc.', NULL, '[email protected]', '+1 555 123 456', 'Nonprofit'),
('Thomas', 'Baker', 'Tech Titans', 'Research', '[email protected]', '+1 555 555 555', 'Commercial'),
('Joseph', 'Smith', 'Veridian Systems', 'Development', '[email protected]', '+1 555 555 66666', 'Commercial'),
('Philip', 'Martin', 'Redpine Group', 'Marketing', '[email protected]', '555-7777', 'Nonprofit'),
('Sarah', 'Williams', 'SmartSpark Industries', NULL, '[email protected]', '+1 565 565 56567', 'Commercial'),
('Damian', 'Keller', 'Cobalt Edge', NULL, '[email protected]', '+1 333 333 33', 'Nonprofit'),
('William', 'Turner', 'Silverline Tech', NULL, '[email protected]', '+1 111 111 11112', 'Commercial'),
('Andrew', 'Kim', 'Orionis Ventures', NULL, '[email protected]', '111-111-111', 'Nonprofit'),
('Kenneth', 'Lambert', 'BuzzBoost Corporation', NULL, '[email protected]', '+1 111 111 111111', 'Commercial'),
('Emily', 'Foster', 'Skyward Innovations', NULL, '[email protected]', '+1 111 111 11', 'Commercial'),
('Isabella', 'Brooks', 'Pinnacle Forge', NULL, '[email protected]', '+1 111 111 11113', 'Commercial'),
('Morgan', 'Davis', 'Aventisys', NULL, '[email protected]', '111-1111', 'Nonprofit'),
('Evelyn', 'Moore', 'Datara', NULL, '[email protected]', '+1 111 111 1111111', 'Nonprofit'),
('Gregory', 'Parker', 'Progressorix', NULL, '[email protected]', '+1 111 111 1', 'Nonprofit'),
('Charlotte', 'Peterson', 'Completium', NULL, '[email protected]', '+1 111 111 111', 'Nonprofit'),
('Timothy', 'Thompson', 'Testify Labs', 'QA', '[email protected]', '+1 111 111 111111', 'Commercial'),
('Joel', 'Simpson', 'ApplicaSoft', 'Software', '[email protected]', '+1 111 111 1111', 'Commercial'),
('Phoebe', 'Marshall', 'Marketify', NULL, '[email protected]', '+1 222 222 22', 'Nonprofit'),
('Damon', 'Knight', 'Lenara', NULL, '[email protected]', '+1 444 444 444444', 'Nonprofit'),
('Willard', 'Taylor', 'Twelvia', NULL, '[email protected]', '+1 333 333 333', 'Nonprofit'),
('Andrea', 'Klein', 'Twentium', NULL, '[email protected]', '+1 555 555 555555', 'Commercial'),
('Kendall', 'Lambert', 'Trionyx', NULL, '[email protected]', '+1 777 777 77', 'Nonprofit'),
('Fiona', 'Lewis', 'Fortivio', NULL, '[email protected]', '888-888-888888', 'Nonprofit')
;