Renamed queue table to sync.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
exports.up = async function(knex) {
|
||||
await knex.schema.createTable('queue', (table) => {
|
||||
await knex.schema.createTable('sync', (table) => {
|
||||
table.increments('id');
|
||||
|
||||
table.string('domain');
|
||||
@@ -36,7 +36,7 @@ exports.up = async function(knex) {
|
||||
};
|
||||
|
||||
exports.down = async function(knex) {
|
||||
await knex.schema.dropTable('queue');
|
||||
await knex.schema.dropTable('sync');
|
||||
|
||||
await knex('users_roles')
|
||||
.update('abilities', JSON.stringify([
|
||||
|
||||
Reference in New Issue
Block a user