Changeset 1413ee2 for src/main/resources/data.sql
- Timestamp:
- 01/03/24 00:00:07 (10 months ago)
- Branches:
- master
- Children:
- 53765dd
- Parents:
- 77205be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/data.sql
r77205be r1413ee2 19 19 values (nextval('hibernate_sequence'), current_timestamp, '075658123', 'admin@schedlr.com', 'admin', 'admin', current_timestamp, '$2a$10$DJyjt.Vj/U8MEuYX1PXL9ukQSMwXHVdhre3POlTqpYzNxHB5gu/MW','ADMIN', 'admin'), 20 20 (nextval('hibernate_sequence'), current_timestamp, '071658125', 'user1@schedlr.com', 'gjoko', 'kostadinov', current_timestamp, '$2a$10$Zc28AcCpAgxB.e67UMF/2.FgchjH9QWB7z8nP0TdkrFneV4IHPXji','CUSTOMER', 'user'), 21 (11111, current_timestamp, '078658523', 'c@c.com', 'Kliment', 'Nedelkovski', current_timestamp, '$2a$10$OratLSMKNsqd7Re.Md3I4.jrRHtTQNaLz/wUKo.I98..GufnD48uG','CUSTOMER', ' kliment123'),22 (10000, current_timestamp, '071218123', 'q@c.com', 'Stefan', 'Petrovski', current_timestamp, '$2a$10$x10O8eLp1r1wHwxDGvyo5.TBL216p8h797JJjQYEfFTbj/1bnCMki','BUSINESS_OWNER', ' stefan123');21 (11111, current_timestamp, '078658523', 'c@c.com', 'Kliment', 'Nedelkovski', current_timestamp, '$2a$10$OratLSMKNsqd7Re.Md3I4.jrRHtTQNaLz/wUKo.I98..GufnD48uG','CUSTOMER', 'c'), 22 (10000, current_timestamp, '071218123', 'q@c.com', 'Stefan', 'Petrovski', current_timestamp, '$2a$10$x10O8eLp1r1wHwxDGvyo5.TBL216p8h797JJjQYEfFTbj/1bnCMki','BUSINESS_OWNER', 'q'); 23 23 24 24 insert into business (id, business_status, company_name, created, modified, business_type_id, owner_id) 25 25 values (10001, 'ACTIVE', 'krojach stefan', current_timestamp, current_timestamp, 1, 10000); 26 26 27 insert into service (id, created, modified, duration, price, cumulated_rating, reviews_count, business_id, service_type_id)28 values (10002, current_timestamp, current_timestamp, 60, 400, 0, 0, 10001, 6),29 (10003, current_timestamp, current_timestamp, 30, 200, 0, 0, 10001, 7);27 insert into service (id, created, modified, service_status, duration, price, cumulated_rating, reviews_count, business_id, service_type_id) 28 values (10002, current_timestamp, current_timestamp, 'ACTIVE', 60, 400, 0, 0, 10001, 6), 29 (10003, current_timestamp, current_timestamp, 'ACTIVE', 30, 200, 0, 0, 10001, 7); 30 30 31 31 insert into appointment (id, created, modified, start_time, end_time, stakeholder_id, service_id)
Note:
See TracChangeset
for help on using the changeset viewer.