feat: add socker connection between client and server

This commit is contained in:
Ahmed Bouhuolia
2024-02-24 00:18:48 +02:00
parent 1fd8a53ed1
commit 2d3544fe37
16 changed files with 357 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
exports.up = function (knex) {
return knex.schema.createTable('plaid_items', (table) => {
table.bigIncrements('id');
table
.bigInteger('tenant_id')
.unsigned()
.index()
.references('id')
.inTable('tenants');
table.string('plaid_item_id');
table.timestamps();
});
};
exports.down = (knex) => {};