forked from Ivasoft/mattermost-mobile
Remove team unreads and rely on channel member instead (#5710)
This commit is contained in:
@@ -10,8 +10,6 @@ const {MY_TEAM} = MM_TABLES.SERVER;
|
||||
export default tableSchema({
|
||||
name: MY_TEAM,
|
||||
columns: [
|
||||
{name: 'is_unread', type: 'boolean'},
|
||||
{name: 'mentions_count', type: 'number'},
|
||||
{name: 'roles', type: 'string'},
|
||||
],
|
||||
});
|
||||
|
||||
@@ -322,13 +322,9 @@ describe('*** Test schema for SERVER database ***', () => {
|
||||
[MY_TEAM]: {
|
||||
name: MY_TEAM,
|
||||
columns: {
|
||||
is_unread: {name: 'is_unread', type: 'boolean'},
|
||||
mentions_count: {name: 'mentions_count', type: 'number'},
|
||||
roles: {name: 'roles', type: 'string'},
|
||||
},
|
||||
columnArray: [
|
||||
{name: 'is_unread', type: 'boolean'},
|
||||
{name: 'mentions_count', type: 'number'},
|
||||
{name: 'roles', type: 'string'},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user