|
| 1 | +-- CREATE DATABASE contributors WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8'; |
| 2 | + |
| 3 | + |
| 4 | +ALTER DATABASE contributors OWNER TO contributors; |
| 5 | + |
| 6 | +\connect contributors |
| 7 | + |
| 8 | + |
| 9 | +CREATE TABLE contributors( |
| 10 | + userid bigint, |
| 11 | + firstname character varying(255), |
| 12 | + lastname character varying(255), |
| 13 | + startyear bigint, |
| 14 | + endyear bigint, |
| 15 | + role character varying(255), |
| 16 | + PRIMARY KEY(firstname, lastname) |
| 17 | +); |
| 18 | + |
| 19 | +ALTER TABLE contributors OWNER TO contributors; |
| 20 | + |
| 21 | +INSERT INTO contributors (userid, firstname, lastname, startyear, endyear, role) |
| 22 | +VALUES |
| 23 | + (1, 'Barbara', 'Cutler', 2014, NULL, 'Project Manager'), |
| 24 | + (2, 'Matthew', 'Peveler', 2014, NULL, 'Project Manager'), |
| 25 | + (3, 'Evan', 'Maicus', 2016, NULL, 'Project Manager'), |
| 26 | + (4, 'Eli', 'Schiff', 2019, NULL, 'Developer'), |
| 27 | + (5, 'Ben', 'Kelly', 2019, NULL, 'Developer'), |
| 28 | + (6, 'Saketh', 'Dargula', 2019, NULL, 'Developer'), |
| 29 | + (7, 'Kevin', 'McKinney', 2019, NULL, 'Developer'), |
| 30 | + (8, 'Jacob', 'McKnight', 2019, NULL, 'Developer'), |
| 31 | + (9, 'Alexa', 'Orosz', 2019, NULL, 'Developer'), |
| 32 | + (10, 'Maya', 'Tung', 2019, NULL, 'Developer'), |
| 33 | + (11, 'Xiao', 'Han,', 2019, NULL, 'Developer'), |
| 34 | + (12, 'Fon', 'Noel,', 2019, NULL, 'Developer'), |
| 35 | + (13, 'Drumil', 'Patil,', 2019, NULL, 'Developer'), |
| 36 | + (14, 'Anubhav', 'Singh,', 2019, NULL, 'Developer'), |
| 37 | + (15, 'Preston', 'Carman', 2019, NULL, 'Developer'), |
| 38 | + (16, 'Matthew', 'Garber', 2019, NULL, 'Developer'), |
| 39 | + (17, 'Matthew', 'Raneri', 2019, NULL, 'Developer'), |
| 40 | + (18, 'Thomas', 'Shweh', 2019, NULL, 'Developer'), |
| 41 | + (19, 'Kasra', 'Sheik', 2018, 2019, 'Developer'), |
| 42 | + (20, 'Ryan', 'Waddell', 2018, 2019, 'Developer'), |
| 43 | + (21, 'Victor', 'Li', 2018, 2019, 'Developer'), |
| 44 | + (22, 'Eric', 'Tran', 2018, NULL, 'Developer'), |
| 45 | + (23, 'Kevin', 'Mackenzie', 2018, NULL, 'Developer'), |
| 46 | + (24, 'Glenn', 'Smith', 2018, NULL, 'Developer'), |
| 47 | + (25, 'Andrew', 'Aikens', 2017, NULL, 'Developer'), |
| 48 | + (26, 'Shail', 'Patel', 2018, NULL, 'Developer'), |
| 49 | + (27, 'Leon', 'Montealegre', 2017, NULL, 'Developer'), |
| 50 | + (28, 'Buster', 'Holzbauer', 2017, NULL, 'Developer'), |
| 51 | + (29, 'Ana', 'Milanova', 2016, NULL, 'Developer'), |
| 52 | + (30, 'Steven', 'Lindsey', 2014, NULL, 'Developer'), |
| 53 | + (31, 'Peter', 'Bailie', 2014, NULL, 'Developer'), |
| 54 | + (32, 'David', 'Goldschmidt', 2014, NULL, 'Developer'), |
| 55 | + (33, 'Konstantin', 'Kuzmin', 2018, NULL, 'Developer'), |
| 56 | + (34, 'John (Jack)', 'Hulton', 2018, 2018, 'Developer'), |
| 57 | + (35, 'Victor', 'Nazzaro', 2018, 2018, 'Developer'), |
| 58 | + (36, 'Joanna', 'Ng', 2018, 2018, 'Developer'), |
| 59 | + (37, 'Nick', 'Roper', 2018, 2018, 'Developer'), |
| 60 | + (38, 'Tushar', 'Gurjar', 2018, 2018, 'Developer'), |
| 61 | + (39, 'Gagan', 'Kumar', 2018, 2018, 'Developer'), |
| 62 | + (40, 'Timothy', 'Cyrus', 2017, 2018, 'Developer'), |
| 63 | + (41, 'Rylan', 'O''Connell', 2018, 2018, 'Developer'), |
| 64 | + (42, 'Salles', 'Viana Gomes de Magalhaes', 2018, 2018, 'Developer'), |
| 65 | + (43, 'Alex', 'Belsten', 2018, 2018, 'Developer'), |
| 66 | + (44, 'Richard', 'Collins', 2018, 2018, 'Developer'), |
| 67 | + (45, 'Jared', 'Okun', 2018, 2018, 'Developer'), |
| 68 | + (46, 'Elizabeth', 'Dinella', 2017, 2018, 'Developer'), |
| 69 | + (47, 'Justin', 'LaPre', 2017, 2018, 'Developer'), |
| 70 | + (48, 'Samuel', 'Breese', 2015, 2018, 'Developer'), |
| 71 | + (49, 'Brandon', 'Drumheller', 2015, 2018, 'Developer'), |
| 72 | + (50, 'Marisa', 'Lee', 2017, 2017, 'Developer'), |
| 73 | + (51, 'Jessica', 'Wang', 2017, 2017, 'Developer'), |
| 74 | + (52, 'James', 'Anderson', 2017, 2017, 'Developer'), |
| 75 | + (53, 'Joshua', 'Barthlemess', 2017, 2017, 'Developer'), |
| 76 | + (54, 'Andrew', 'Ma', 2017, 2017, 'Developer'), |
| 77 | + (55, 'Jason', 'Parham', 2014, 2017, 'Developer'), |
| 78 | + (56, 'Jeramey', 'Tyler', 2016, 2017, 'Developer'), |
| 79 | + (57, 'Zishan', 'Huang', 2015, 2016, 'Developer'), |
| 80 | + (58, 'Garrett', 'Chang', 2016, 2016, 'Developer'), |
| 81 | + (59, 'Robert', 'Patterson', 2016, 2016, 'Developer'), |
| 82 | + (60, 'Andrea', 'Wong', 2015, 2016, 'Developer'), |
| 83 | + (61, 'Melissa', 'Lindquist', 2015, 2016, 'Developer'), |
| 84 | + (62, 'Beverly', 'Sihsobhon', 2015, 2016, 'Developer'), |
| 85 | + (63, 'Marina', 'Espinoza', 2015, 2015, 'Developer'), |
| 86 | + (64, 'Chris', 'Berger', 2014, 2014, 'Developer'), |
| 87 | + (65, 'Seema', 'Bhaskar', 2014, 2014, 'Developer'), |
| 88 | + (66, 'Stanley', 'Cheung', 2014, 2014, 'Developer'), |
| 89 | + (67, 'Jesse', 'Freitas', 2014, 2014, 'Developer'), |
| 90 | + (68, 'Severin', 'Ibarluzea', 2014, 2014, 'Developer'), |
| 91 | + (69, 'Kiana', 'McNellis', 2014, 2014, 'Developer'), |
| 92 | + (70, 'Kienan', 'Knight-Boehm', 2014, 2014, 'Developer'), |
| 93 | + (71, 'Tyler', 'Shepard', 2014, 2014, 'Developer'), |
| 94 | + (72, 'Sam', 'Seng', 2014, 2014, 'Developer'), |
| 95 | + (73, 'Victor', 'Zhu', 2014, 2014, 'Developer'), |
| 96 | + (74, 'Andrew', 'Fasano', NULL, NULL, 'Security'), |
| 97 | + (75, 'Markus', 'Gaasedelen', NULL, NULL, 'Security'), |
| 98 | + (76, 'Amy', 'Burnett', NULL, NULL, 'Security'), |
| 99 | + (77, 'Aidan', 'Noll', NULL, NULL, 'Security'), |
| 100 | + (78, 'Toshi', 'Piazza', NULL, NULL, 'Security'), |
| 101 | + (79, 'Zachary', 'Wimer', NULL, NULL, 'Security'); |
0 commit comments