File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
/* Replace with your SQL commands */
2
- SET search_path TO lbstarter ,public;
2
+ SET search_path TO admin ,public;
3
3
4
+ alter table user_tenants drop constraint fk_user_tenants_roles;
5
+ alter table tenants drop constraint fk_created_by;
6
+ alter table tenants drop constraint fk_modified_by;
7
+ alter table users drop constraint fk_users_tenants_default_tenant;
8
+ alter table user_tenant_permissions drop constraint fk_user_tenant_permissions;
9
+ alter table users drop constraint fk_user_user_tenant_created_by;
10
+ alter table users drop constraint fk_user_user_tenant_modified_by;
11
+ delete from roles;
12
+ delete from groups;
4
13
delete from user_tenants;
5
- delete from users ;
14
+ delete from user_tenant_permissions ;
6
15
delete from tenants;
7
- delete from roles ;
16
+ delete from users ;
You can’t perform that action at this time.
0 commit comments