feat: Add tax numbers to the organization details (#269)

This commit is contained in:
Robert Koch
2023-10-26 06:10:46 +10:00
committed by GitHub
parent 2c5537efad
commit e4a7f09dbc
7 changed files with 55 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
exports.up = function (knex) {
return knex.schema.table('tenants_metadata', (table) => {
table.string('tax_number')
});
};
exports.down = function (knex) {
return knex.schema.table('tenants_metadata', (table) => {
table.dropColumn('tax_number');
});
};