mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 23:32:37 +03:00
homework 6.2: add tasks 3-6
This commit is contained in:
13
src/homework/06-database/6.2/migration_data.sql
Normal file
13
src/homework/06-database/6.2/migration_data.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
insert into orders (name, price) values
|
||||
('Шоколад', 10),
|
||||
('Принтер', 3000),
|
||||
('Книга', 500),
|
||||
('Монитор', 7000),
|
||||
('Гитара', 4000);
|
||||
|
||||
insert into clients (last_name, country, order_id) values
|
||||
('Иванов Иван Иванович', 'USA', null),
|
||||
('Петров Петр Петрович', 'Canada', null),
|
||||
('Иоганн Себастьян Бах', 'Japan', null),
|
||||
('Ронни Джеймс Дио', 'Russia', null),
|
||||
('Ritchie Blackmore', 'Russia', null);
|
||||
Reference in New Issue
Block a user