WiP updates
This commit is contained in:
parent
6706d93bc1
commit
4fce4b6f81
27 changed files with 763 additions and 85 deletions
|
@ -0,0 +1,41 @@
|
|||
exports.up = (knex, Promise) => (async() => {
|
||||
await knex.schema.createTable('send_configurations', table => {
|
||||
table.increments('id').primary();
|
||||
table.string('name');
|
||||
table.text('description');
|
||||
table.string('from_email');
|
||||
table.boolean('from_email_overridable').defaultTo(false);
|
||||
table.string('from_name');
|
||||
table.boolean('from_name_overridable').defaultTo(false);
|
||||
table.string('subject');
|
||||
table.boolean('subject_overridable').defaultTo(false);
|
||||
table.string('mailer_type');
|
||||
table.text('mailer_settings', 'longtext');
|
||||
table.timestamp('created').defaultTo(knex.fn.now());
|
||||
table.integer('namespace').unsigned().references('namespaces.id');
|
||||
});
|
||||
|
||||
await knex.schema.createTable(`shares_send_configuration`, table => {
|
||||
table.integer('entity').unsigned().notNullable().references(`send_configurations.id`).onDelete('CASCADE');
|
||||
table.integer('user').unsigned().notNullable().references('users.id').onDelete('CASCADE');
|
||||
table.string('role', 128).notNullable();
|
||||
table.boolean('auto').defaultTo(false);
|
||||
table.primary(['entity', 'user']);
|
||||
});
|
||||
|
||||
await knex.schema.createTable(`permissions_send_configuration`, table => {
|
||||
table.integer('entity').unsigned().notNullable().references(`send_configurations.id`).onDelete('CASCADE');
|
||||
table.integer('user').unsigned().notNullable().references('users.id').onDelete('CASCADE');
|
||||
table.string('operation', 128).notNullable();
|
||||
table.primary(['entity', 'user', 'operation']);
|
||||
});
|
||||
|
||||
})();
|
||||
|
||||
exports.down = (knex, Promise) => (async() => {
|
||||
await knex.schema
|
||||
.dropTable('shares_send_configuration')
|
||||
.dropTable('permissions_send_configuration')
|
||||
.dropTable('send_configurations')
|
||||
;
|
||||
})();
|
|
@ -0,0 +1,5 @@
|
|||
exports.up = (knex, Promise) => (async() => {
|
||||
})();
|
||||
|
||||
exports.down = (knex, Promise) => (async() => {
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue