* MM_30476 : Added all isolated tables from the server schema * MM_30476 : Updated 'test' script in package.json * MM_30476 : Rename table schemas to avoid name collision * MM_30476 : Added 'Channel' section of the server schema * MM_30476 : Apply suggestions from code review Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> * MM_30476 : Converted @relation to @immutableRelation * MM_30476 : Apply suggestions from code review * MM_30476 : Apply suggestions from code review Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> * MM_30476 : Minor updates to the comments * MM_30476 : Minor update to the comments * MM_30476 : Updated table schema exports * MM_30476 : Updated comments * MM_30476 : Apply suggestions from code review Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * MM_30476 : Update as per suggestions * MM_30476 : Updated comments * MM_30476 : Team and MyTeam share 1:1 relationship * MM_30476 : Updated team comments * MM_30476 : Updated myteam and team comments Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
31 lines
1.7 KiB
TypeScript
31 lines
1.7 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export {default as ChannelInfoSchema} from './channel_info';
|
|
export {default as ChannelMembershipSchema} from './channel_membership';
|
|
export {default as ChannelSchema} from './channel';
|
|
export {default as CustomEmojiSchema} from './custom_emoji';
|
|
export {default as DraftSchema} from './draft';
|
|
export {default as FileSchema} from './file';
|
|
export {default as GroupMembershipSchema} from './group_membership';
|
|
export {default as GroupSchema} from './group';
|
|
export {default as GroupsInChannelSchema} from './groups_in_channel';
|
|
export {default as GroupsInTeamSchema} from './groups_in_team';
|
|
export {default as MyChannelSchema} from './my_channel';
|
|
export {default as MyChannelSettingsSchema} from './my_channel_settings';
|
|
export {default as MyTeamSchema} from './my_team';
|
|
export {default as PostsInChannelSchema} from './posts_in_channel';
|
|
export {default as PostInThreadSchema} from './posts_in_thread';
|
|
export {default as PostMetadataSchema} from './post_metadata';
|
|
export {default as PostSchema} from './post';
|
|
export {default as PreferenceSchema} from './preference';
|
|
export {default as ReactionSchema} from './reaction';
|
|
export {default as RoleSchema} from './role';
|
|
export {default as SlashCommandSchema} from './slash_command';
|
|
export {default as SystemSchema} from './system';
|
|
export {default as TeamChannelHistorySchema} from './team_channel_history';
|
|
export {default as TeamMembershipSchema} from './team_membership';
|
|
export {default as TeamSchema} from './team';
|
|
export {default as TeamSearchHistorySchema} from './team_search_history';
|
|
export {default as TermsOfServiceSchema} from './terms_of_service';
|
|
export {default as UserSchema} from './user';
|