* 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>
17 lines
484 B
TypeScript
17 lines
484 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 {POSTS_IN_THREAD} = MM_TABLES.SERVER;
|
|
|
|
export default tableSchema({
|
|
name: POSTS_IN_THREAD,
|
|
columns: [
|
|
{name: 'earliest', type: 'number'},
|
|
{name: 'latest', type: 'number'},
|
|
{name: 'root_id', type: 'string', isIndexed: true},
|
|
],
|
|
});
|