mattermost-mobile/app/database/schema/server/table_schemas/custom_profile_attribute.ts
2025-04-09 15:35:27 +02:00

17 lines
518 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 {CUSTOM_PROFILE_ATTRIBUTE} = MM_TABLES.SERVER;
export default tableSchema({
name: CUSTOM_PROFILE_ATTRIBUTE,
columns: [
{name: 'field_id', type: 'string', isIndexed: true},
{name: 'user_id', type: 'string', isIndexed: true},
{name: 'value', type: 'string'},
],
});