- add all migration files for database
- npm updates
This commit is contained in:
parent
8a404e8a0c
commit
4abcfe7135
29 changed files with 1540 additions and 375 deletions
52
database/migrations/acl_3_role_has_permissions.ts
Normal file
52
database/migrations/acl_3_role_has_permissions.ts
Normal file
|
@ -0,0 +1,52 @@
|
|||
import BaseSchema from '@ioc:Adonis/Lucid/Schema';
|
||||
|
||||
export default class RoleHasPermissions extends BaseSchema {
|
||||
// protected tableName = Config.get('rolePermission.role_permission_table', 'role_permissions')
|
||||
protected tableName = 'role_has_permissions';
|
||||
|
||||
public async up() {
|
||||
this.schema.createTable(this.tableName, (table) => {
|
||||
// table.integer('permission_id').notNullable();
|
||||
// table.integer('role_id').notNullable();
|
||||
table.integer('permission_id').unsigned().index().notNullable();
|
||||
table
|
||||
.foreign('permission_id', 'role_has_permissions_permission_id_foreign')
|
||||
.references('id')
|
||||
.inTable('permissions')
|
||||
.onDelete('CASCADE') // delete this when permission is deleted
|
||||
.onUpdate('CASCADE');
|
||||
table.integer('role_id').unsigned().index().notNullable();
|
||||
table
|
||||
.foreign('role_id', 'role_has_permissions_role_id_foreign')
|
||||
.references('id')
|
||||
.inTable('roles')
|
||||
.onDelete('CASCADE') // delete this when role is deleted
|
||||
.onUpdate('CASCADE');
|
||||
table.primary(['permission_id', 'role_id']);
|
||||
});
|
||||
}
|
||||
|
||||
public async down() {
|
||||
this.schema.dropTable(this.tableName);
|
||||
}
|
||||
}
|
||||
|
||||
// CREATE TABLE IF NOT EXISTS role_has_permissions
|
||||
// (
|
||||
// permission_id integer NOT NULL,
|
||||
// role_id integer NOT NULL,
|
||||
// CONSTRAINT role_has_permissions_pkey PRIMARY KEY (permission_id, role_id),
|
||||
// CONSTRAINT role_has_permissions_permission_id_foreign FOREIGN KEY (permission_id)
|
||||
// REFERENCES permissions (id) MATCH SIMPLE
|
||||
// ON UPDATE CASCADE
|
||||
// ON DELETE CASCADE,
|
||||
// CONSTRAINT role_has_permissions_role_id_foreign FOREIGN KEY (role_id)
|
||||
// REFERENCES roles (id) MATCH SIMPLE
|
||||
// ON UPDATE CASCADE
|
||||
// ON DELETE CASCADE
|
||||
// )
|
||||
// ALTER TABLE IF EXISTS role_has_permissions
|
||||
// OWNER to tethys_admin;
|
||||
// REVOKE ALL ON TABLE role_has_permissions FROM tethys_app;
|
||||
// GRANT ALL ON TABLE role_has_permissions TO tethys_admin;
|
||||
// GRANT DELETE, INSERT, SELECT, UPDATE ON TABLE role_has_permissions TO tethys_app;
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue