Skip to content

Commit

Permalink
Fixing customer foreign key
Browse files Browse the repository at this point in the history
  • Loading branch information
agoncal committed Nov 8, 2014
1 parent 19fece6 commit 297f33b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tutorials/forge-hol/script/import.sql
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ INSERT INTO country(id, iso_code, name, printable_name, iso3, numcode, version)
INSERT INTO country(id, iso_code, name, printable_name, iso3, numcode, version) VALUES (1238, 'ZW','ZIMBABWE','Zimbabwe','ZWE','716', 1)


INSERT INTO customer (id, version, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1000, 1, 'Anakin', 'Skywalker', '+1 123 3564 4567', 'anakin@skywalker.com', '1935-07-01', '3 Wars Street', 'Black Star', '9999', 1230);
INSERT INTO customer (id, version, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1001, 1, 'Obi-Wan', 'Kenobi', '+1 765 897 321', 'obiwan@kenobi.com', '1914-04-02', '14 Star Boulevard', 'Black Star', '9999', 1115);
INSERT INTO customer (id, version, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1002, 1, 'Luke', 'Skywalker', '+1 786 1212 987', 'luke@skywalker.com', '1951-09-07', '543 Sun Set Boulevard', 'Black Star', '9999', 1200);
INSERT INTO customer (id, version, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1003, 1, 'Han', 'Solo', '+1 786 1212 987', 'han@solo.com', '1923-04-12', '543 Sun Set Boulevard', 'Black Star', '9999', 1238);
INSERT INTO customer (id, version, login, password, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1000, 1, 'anakin', 'anakinpwd', 'Anakin', 'Skywalker', '+1 123 3564 4567', 'anakin@skywalker.com', '1935-07-01', '3 Wars Street', 'Black Star', '9999', 1230);
INSERT INTO customer (id, version, login, password, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1001, 1, 'obiwan', 'obiwanpwd', 'Obi-Wan', 'Kenobi', '+1 765 897 321', 'obiwan@kenobi.com', '1914-04-02', '14 Star Boulevard', 'Black Star', '9999', 1115);
INSERT INTO customer (id, version, login, password, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1002, 1, 'luke', 'lukepwd', 'Luke', 'Skywalker', '+1 786 1212 987', 'luke@skywalker.com', '1951-09-07', '543 Sun Set Boulevard', 'Black Star', '9999', 1200);
INSERT INTO customer (id, version, login, password, first_name, last_name, telephone, email, date_of_birth, street1, city, zip_code, country_id) VALUES (1003, 1, 'han', 'hanpwd', 'Han', 'Solo', '+1 786 1212 987', 'han@solo.com', '1923-04-12', '543 Sun Set Boulevard', 'Black Star', '9999', 1238);

0 comments on commit 297f33b

Please sign in to comment.