* 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>
30 lines
1 KiB
TypeScript
30 lines
1 KiB
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 {POST} = MM_TABLES.SERVER;
|
|
|
|
export default tableSchema({
|
|
name: POST,
|
|
columns: [
|
|
{name: 'channel_id', type: 'string', isIndexed: true},
|
|
{name: 'create_at', type: 'number'},
|
|
{name: 'delete_at', type: 'number'},
|
|
{name: 'edit_at', type: 'number'},
|
|
{name: 'is_pinned', type: 'boolean'},
|
|
{name: 'message', type: 'string'},
|
|
{name: 'metadata', type: 'string', isOptional: true},
|
|
{name: 'original_id', type: 'string'},
|
|
{name: 'pending_post_id', type: 'string', isIndexed: true},
|
|
{name: 'previous_post_id', type: 'string'},
|
|
{name: 'props', type: 'string'},
|
|
{name: 'root_id', type: 'string'},
|
|
{name: 'type', type: 'string'},
|
|
{name: 'update_at', type: 'number'},
|
|
{name: 'user_id', type: 'string', isIndexed: true},
|
|
],
|
|
});
|
|
|