1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00
budibase/packages/backend-core/src/migrations/definitions.ts

37 lines
744 B
TypeScript
Raw Normal View History

2022-09-28 20:56:45 +13:00
import {
MigrationType,
MigrationName,
MigrationDefinition,
} from "@budibase/types"
export const DEFINITIONS: MigrationDefinition[] = [
{
type: MigrationType.GLOBAL,
name: MigrationName.USER_EMAIL_VIEW_CASING,
},
{
type: MigrationType.GLOBAL,
2022-09-29 01:13:37 +13:00
name: MigrationName.SYNC_QUOTAS,
2022-09-28 20:56:45 +13:00
},
{
type: MigrationType.APP,
name: MigrationName.APP_URLS,
},
{
type: MigrationType.APP,
name: MigrationName.EVENT_APP_BACKFILL,
},
{
type: MigrationType.GLOBAL,
name: MigrationName.EVENT_GLOBAL_BACKFILL,
},
{
type: MigrationType.INSTALLATION,
name: MigrationName.EVENT_INSTALLATION_BACKFILL,
},
{
type: MigrationType.GLOBAL,
name: MigrationName.GLOBAL_INFO_SYNC_USERS,
},
]