fix issues.

This commit is contained in:
Ahmed Bouhuolia
2020-05-05 04:21:37 +02:00
parent 3b25056cbe
commit bd7eb0eb76
41 changed files with 364 additions and 216 deletions

View File

@@ -14,7 +14,6 @@ exports.up = function (knex) {
table.text('note').nullable();
table.integer('category_id').unsigned();
table.integer('user_id').unsigned();
table.string('attachment_file');
table.timestamps();
});
};

View File

@@ -9,7 +9,7 @@ exports.up = function (knex) {
table.integer('view_id').unsigned();
}).then(() => {
return knex.seed.run({
specific: 'seed_views_role.js',
specific: 'seed_views_roles.js',
});
});
};