14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
// This file should never be manually modified, use `yarn add-app-migration` in order to add a new one
|
|
|
|
import { AppMigration } from "."
|
|
|
|
import m20240604153647_initial_sqs from "./migrations/20240604153647_initial_sqs"
|
|
|
|
// Migrations will be executed sorted by ID
|
|
export const MIGRATIONS: AppMigration[] = [
|
|
{
|
|
id: "20240604153647_initial_sqs",
|
|
func: m20240604153647_initial_sqs,
|
|
},
|
|
]
|