forked from Ivasoft/mattermost-mobile
* Add column last_fetched_at to MyChannel & Thread tables and the migration * Fix schema tests * Handle lastFetchAt, retrieve threads on init and properly observe thread unreads (#6436) * [Gekidou] Set lastFetchAt when fetching posts for a channel (#6437) * Set lastFetchAt when fetching posts for a channel * When resetting _preparedState set always to null * Revert changes in WS * Handle and set lastFetchedAt for MyChannel in iOS push notification * feedback review * iOS fallback to last post createAt if no lastFetchAt set * Handle lastFetchAt on Android push notifications * create storePostsForChannel local action * Fix iOS fallback to last post create_at Co-authored-by: Daniel Espino García <larkox@gmail.com>
24 lines
730 B
TypeScript
24 lines
730 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {tableSchema} from '@nozbe/watermelondb';
|
|
|
|
import {MM_TABLES} from '@constants/database';
|
|
|
|
const {THREAD} = MM_TABLES.SERVER;
|
|
|
|
export default tableSchema({
|
|
name: THREAD,
|
|
columns: [
|
|
{name: 'is_following', type: 'boolean'},
|
|
{name: 'last_reply_at', type: 'number'},
|
|
{name: 'last_viewed_at', type: 'number'},
|
|
{name: 'reply_count', type: 'number'},
|
|
{name: 'unread_mentions', type: 'number'},
|
|
{name: 'unread_replies', type: 'number'},
|
|
{name: 'viewed_at', type: 'number'},
|
|
{name: 'last_fetched_at', type: 'number', isIndexed: true},
|
|
],
|
|
});
|
|
|