2022-09-28 09:56:45 +02: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-28 14:13:37 +02:00
|
|
|
name: MigrationName.SYNC_QUOTAS,
|
2022-09-28 09:56:45 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: MigrationType.APP,
|
|
|
|
name: MigrationName.APP_URLS,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: MigrationType.APP,
|
|
|
|
name: MigrationName.EVENT_APP_BACKFILL,
|
|
|
|
},
|
2022-11-15 12:54:45 +01:00
|
|
|
{
|
|
|
|
type: MigrationType.APP,
|
2022-11-24 15:27:49 +01:00
|
|
|
name: MigrationName.TABLE_SETTINGS_LINKS_TO_ACTIONS,
|
2022-11-15 12:54:45 +01:00
|
|
|
},
|
2022-09-28 09:56:45 +02:00
|
|
|
{
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
]
|