Skip to content

Latest commit

 

History

History
25 lines (10 loc) · 609 Bytes

README.md

File metadata and controls

25 lines (10 loc) · 609 Bytes

UserManagement

Sprin boot simple crud and role based sample project.

#Scripts

SELECT * FROM db_user_management.role;

SELECT * FROM db_user_management.user;

-- Insert records in role table

INSERT INTO `db_user_management`.`role` (`description`, `name`) VALUES ('admin can do anything', 'Role_Admin');

INSERT INTO `db_user_management`.`role` (`description`, `name`) VALUES ('moderator do limited things', 'Role_Moderator');

INSERT INTO `db_user_management`.`role` (`description`, `name`) VALUES ('user just check their things', 'Role_User');

Happy Coding :)