summaryrefslogtreecommitdiff
path: root/microservices/03-resource-server/src/main/resources/data.sql
blob: 173ee0e1474bd146f7d90620ebdda1b0e330ee30 (plain)
1
2
3
4
5
6
7
8
INSERT INTO user_account (username, password, description) VALUES ('admin','$argon2id$v=19$m=16,t=2,p=1$YnJERWhhY0RxV1hGMFNWVg$OHRvhGZx1x9KqCoVZOfUD2TkJc+HQB5SamgYejw+K2Y', 'Admin user');
INSERT INTO user_account (username, password, description) VALUES ('user1','$argon2id$v=19$m=16,t=2,p=1$YnJERWhhY0RxV1hGMFNWVg$OHRvhGZx1x9KqCoVZOfUD2TkJc+HQB5SamgYejw+K2Y', 'Normal user 1');

INSERT INTO user_roles (user_id, role_name) VALUES (1, 'ADMIN');
INSERT INTO user_roles (user_id, role_name) VALUES (2, 'USER');

INSERT INTO post (title, author, description) VALUES ('The rabbit jumped over the moon.', 'Kamal', 'Once upon a time there was a rabbit. And then...');
INSERT INTO post (title, author, description) VALUES ('The fox jumped over the moon.', 'Kamal', 'Once upon a time there was a fox. And then...');