Computation of permissions seems to somehow work.
This commit is contained in:
parent
e7bdfb7745
commit
5df444f641
12 changed files with 286 additions and 133 deletions
|
@ -1,58 +1,33 @@
|
|||
exports.up = function(knex, Promise) {
|
||||
return knex.schema.createTable('namespaces', table => {
|
||||
const entityTypesAddNamespace = ['list', 'report', 'report_template', 'user'];
|
||||
let schema = knex.schema;
|
||||
|
||||
schema = schema.createTable('namespaces', table => {
|
||||
table.increments('id').primary();
|
||||
table.string('name');
|
||||
table.text('description');
|
||||
table.integer('namespace').unsigned().references('namespaces.id').onDelete('CASCADE');
|
||||
})
|
||||
|
||||
.then(() => knex('namespaces').insert({
|
||||
id: 1,
|
||||
name: 'Global',
|
||||
description: 'Global namespace'
|
||||
}))
|
||||
}));
|
||||
|
||||
.then(() => knex.schema.table('users', table => {
|
||||
table.integer('namespace').unsigned().notNullable();
|
||||
}))
|
||||
.then(() => knex('users').update({
|
||||
namespace: 1
|
||||
}))
|
||||
.then(() => knex.schema.table('users', table => {
|
||||
table.foreign('namespace').references('namespaces.id').onDelete('CASCADE');
|
||||
}))
|
||||
for (const entityType of entityTypesAddNamespace) {
|
||||
schema = schema
|
||||
.then(() => knex.schema.table(`${entityType}s`, table => {
|
||||
table.integer('namespace').unsigned().notNullable();
|
||||
}))
|
||||
.then(() => knex(`${entityType}s`).update({
|
||||
namespace: 1
|
||||
}))
|
||||
.then(() => knex.schema.table(`${entityType}s`, table => {
|
||||
table.foreign('namespace').references('namespaces.id').onDelete('CASCADE');
|
||||
}));
|
||||
}
|
||||
|
||||
.then(() => knex.schema.table('lists', table => {
|
||||
table.integer('namespace').unsigned().notNullable();
|
||||
}))
|
||||
.then(() => knex('lists').update({
|
||||
namespace: 1
|
||||
}))
|
||||
.then(() => knex.schema.table('lists', table => {
|
||||
table.foreign('namespace').references('namespaces.id').onDelete('CASCADE');
|
||||
}))
|
||||
|
||||
.then(() => knex.schema.table('report_templates', table => {
|
||||
table.integer('namespace').unsigned().notNullable();
|
||||
}))
|
||||
.then(() => knex('report_templates').update({
|
||||
namespace: 1
|
||||
}))
|
||||
.then(() => knex.schema.table('report_templates', table => {
|
||||
table.foreign('namespace').references('namespaces.id').onDelete('CASCADE');
|
||||
}))
|
||||
|
||||
.then(() => knex.schema.table('reports', table => {
|
||||
table.integer('namespace').unsigned().notNullable();
|
||||
}))
|
||||
.then(() => knex('reports').update({
|
||||
namespace: 1
|
||||
}))
|
||||
.then(() => knex.schema.table('reports', table => {
|
||||
table.foreign('namespace').references('namespaces.id').onDelete('CASCADE');
|
||||
}))
|
||||
|
||||
;
|
||||
return schema;
|
||||
};
|
||||
|
||||
exports.down = function(knex, Promise) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue