feat: update database schema and configuration for Flyway integration and refactor table names
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
<mapper namespace="com.onixbyte.helix.mapper.AuthorityMapper">
|
||||
<select id="selectByUserId" parameterType="long">
|
||||
SELECT DISTINCT a.id, a.code, a.name, a.description, a.status, a.created_at, a.updated_at
|
||||
FROM authorities a
|
||||
JOIN role_authorities ra ON a.id = ra.authority_id
|
||||
JOIN user_roles ur ON ra.role_id = ur.role_id
|
||||
FROM authority a
|
||||
JOIN role_authority ra ON a.id = ra.authority_id
|
||||
JOIN user_role ur ON ra.role_id = ur.role_id
|
||||
WHERE ur.user_id = #{userId}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user