oswilno/db/seed/001_init.psql

19 lines
1.3 KiB
Plaintext

INSERT INTO accounts (login, pass, email)
VALUES ('Foo', 'Bar', 'foo@example.com');
INSERT INTO local_businesses (name, description, owner_id)
VALUES ('Cheap Tees', 'Unlimited possiblities! You can move the water masks to create your own frame. It gives you an opportunity to fit the layers to your image. Create great final effect with seconds', 1),
('Tema Model Agency Ltd', 'Special for website developers and app ui designers, to preview their apps in a professional way, showcasing details and focus on Responsive Design for Website and apps, Vol 09.', 1),
('Neet Online Test Series - Nots', 'Advanced, easy to edit mockup. It contains everything you need to create a realistic look of your project. Guarantees the a good look for bright and dark designs and perfect fit to the shape. Easy to navigate, well described layers, friendly help file.', 1);
INSERT INTO local_business_items (name, price, local_business_id, item_order)
VALUES ('Water Frame', 23423, 1, 1),
('Macbook Laptop Display 2.0', 927, 1, 2),
('Paper Band', 920, 1, 3),
('Artbox', 2500, 2, 1),
('School Backpacks', 2150, 2, 2),
('Premium Paper Cup', 2090, 3, 1),
('Beer Black Bottle', 5000, 3, 2),
('Circle Photo Frame', 2300, 3, 3),
('Grey T-Shirt', 3430, 3, 4);