MM-42787 - Gekidou User DB field remote_id (#6094)

* added remote_id to user table schema

* update user model to accomodate for remote_id field

* transform - reaction - split into its own file

* update user transformer

* update isShared function

* Fix typescript

* make remote_id field optional

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
This commit is contained in:
Avinash Lingaloo
2022-03-29 21:54:09 +04:00
committed by GitHub
parent ec17aea41e
commit 7f8a55684d
10 changed files with 95 additions and 74 deletions

View File

@@ -28,5 +28,6 @@ export default tableSchema({
{name: 'status', type: 'string'},
{name: 'timezone', type: 'string'},
{name: 'username', type: 'string'},
{name: 'remote_id', type: 'string', isOptional: true},
],
});