Merge pull request #280 from bigcapitalhq/optimize-printing

feat: optimize documents printing
This commit is contained in:
Ahmed Bouhuolia
2023-12-04 22:36:43 +02:00
committed by GitHub
37 changed files with 10423 additions and 5953 deletions

View File

@@ -0,0 +1,14 @@
exports.up = function (knex) {
return knex.schema.createTable('storage', (table) => {
table.increments('id').primary();
table.string('key').notNullable();
table.string('path').notNullable();
table.string('extension').notNullable();
table.integer('expire_in');
table.timestamps();
});
};
exports.down = function (knex) {
return knex.schema.dropTableIfExists('storage');
};