16 lines
570 B
SQL
16 lines
570 B
SQL
-- enough data to get the system working and real logins
|
|
|
|
insert into addresses (address, postcode, latitude, longitude)
|
|
values ('West Croft, Standingstone, Auchencairn', 'DG7 1RF', 54.822389, -3.920265);
|
|
|
|
insert into dwellings (id, address_id, sub_address)
|
|
values (5, 5, '');
|
|
|
|
insert into electors (name, dwelling_id, gender)
|
|
values ('Simon Brooke', 1, 'Male');
|
|
|
|
insert into authorities (id) values ('GitHub');
|
|
|
|
insert into canvassers (username, fullname, elector_id, address_id, authority_id, authorised)
|
|
values ('simon_brooke', 'Simon Brooke', 2, 2, 'GitHub', true);
|