- Organize database seeds.

- Optimize design dashboard top bar.
This commit is contained in:
Ahmed Bouhuolia
2020-03-26 22:34:02 +02:00
parent a399052a30
commit d695188d3a
18 changed files with 121 additions and 45 deletions

View File

@@ -14,6 +14,10 @@ exports.up = function (knex) {
table.integer('index');
table.json('options');
table.integer('resource_id').unsigned();
}).then(() => {
return knex.seed.run({
specific: 'seed_resources_fields.js',
});
});
};