feat: improvement in Plaid accounts disconnecting

This commit is contained in:
Ahmed Bouhuolia
2024-07-29 19:49:20 +02:00
parent f6d4ec504f
commit 894c899847
15 changed files with 118 additions and 132 deletions

View File

@@ -0,0 +1,9 @@
exports.up = function (knex) {
return knex.schema.table('accounts', (table) => {
table.boolean('is_syncing_owner').defaultTo(false).after('is_feeds_active');
});
};
exports.down = function (knex) {
table.dropColumn('is_syncing_owner');
};