forked from Ivasoft/mattermost-mobile
18 lines
459 B
TypeScript
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'},
|
|
],
|
|
});
|