|
-- Add down migration script here
|
|
-- Delete role records
|
|
DELETE FROM "main"."roles" WHERE "id" = '5';
|
|
|
|
-- Delete permission records
|
|
DELETE FROM "main"."role_permissions" WHERE "id" = '8';
|
|
|
|
-- Delete user role records
|
|
DELETE FROM "main"."user_roles" WHERE "role_id" = '5';
|