Files
mattermost-mobile/app/database/schema/default/table_schemas/app.ts
2021-04-09 15:04:40 +04:00

18 lines
459 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 {APP} = MM_TABLES.DEFAULT;
export default tableSchema({
name: APP,
columns: [
{name: 'build_number', type: 'string'},
{name: 'created_at', type: 'number'},
{name: 'version_number', type: 'string'},
],
});