Changeset a436340 for src/main/resources/data.sql
- Timestamp:
- 02/05/23 19:55:10 (21 months ago)
- Branches:
- master
- Children:
- 2b0a4db
- Parents:
- cc52b09
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/data.sql
rcc52b09 ra436340 4 4 insert into stakeholder (id, created, email, first_name, last_name, modified, password, stakeholder_type, username) 5 5 values (nextval('hibernate_sequence'), current_timestamp, 'user1@schedlr.com', 'gjoko', 'kostadinov', current_timestamp, '$2a$10$Zc28AcCpAgxB.e67UMF/2.FgchjH9QWB7z8nP0TdkrFneV4IHPXji','CUSTOMER', 'user'); 6 7 insert into business_type (id, created, modified, name) 8 values (1, current_timestamp, current_timestamp, 'tailor'), 9 (2, current_timestamp, current_timestamp, 'nail salon'), 10 (3, current_timestamp, current_timestamp, 'massage parlor'), 11 (4, current_timestamp, current_timestamp, 'makeup studio'), 12 (5, current_timestamp, current_timestamp, 'hairdresser'), 13 (6, current_timestamp, current_timestamp, 'barber'); 14 15 insert into service_type (id, created, modified, name, business_type_id) 16 values (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'haircut', 5), 17 (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'beard shaving', 6), 18 (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'eye brow plucking', 6), 19 (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'waxing', 6), 20 (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'nail extensions', 2), 21 (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'dress shortening', 1), 22 (nextval('hibernate_sequence'), current_timestamp, current_timestamp, 'holes fixing', 1);
Note:
See TracChangeset
for help on using the changeset viewer.