mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: clean up the stripe payment integration
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
/**
|
||||
* @param { import("knex").Knex } knex
|
||||
* @returns { Promise<void> }
|
||||
*/
|
||||
exports.up = function (knex) {
|
||||
return knex.schema.table('sales_invoices', (table) => {
|
||||
table.string('stripe_plink_id').nullable();
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* @param { import("knex").Knex } knex
|
||||
* @returns { Promise<void> }
|
||||
*/
|
||||
exports.down = function (knex) {
|
||||
return knex.schema.table('sales_invoices', (table) => {
|
||||
table.dropColumn('stripe_plink_id');
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user