* started with the diagrams * removed redundant tables next step: 1. reconstruct id ( local id vs server id ) 2. annotate fields with examples 3. recreate relationship * work in progress * work in progress * fix association * update postsInChannel * removed SlashCommands from the Server database schema * added missing associations in the models and updated docs/database * exported server database * update test * code corrections following review * update relationship * update docs * removed cyclic relationship * Revert "removed cyclic relationship" This reverts commit 4d784efb815c0430aa3f7cc433ac4125898d2621. * removed isOptional from Draft * linked myChannelSettings to myChannel instead of Channel * update diagrams * store null instead of empty string * update thread association Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
22 lines
662 B
TypeScript
22 lines
662 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'},
|
|
],
|
|
});
|
|
|