27 lines
862 B
TypeScript
27 lines
862 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';
|
|
|
|
import type {TableSchemaSpec} from '@nozbe/watermelondb/Schema';
|
|
|
|
const {THREAD} = MM_TABLES.SERVER;
|
|
|
|
export const tableSchemaSpec: TableSchemaSpec = {
|
|
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},
|
|
],
|
|
};
|
|
|
|
export default tableSchema(tableSchemaSpec);
|
|
|