2020-04-23 15:43:15 +02:00
|
|
|
import CreateMigrationsTable from "../src/migrations/CreateMigrationsTable";
|
2020-04-24 12:12:27 +02:00
|
|
|
import CreateUsersAndUserEmailsTable from "../src/auth/migrations/CreateUsersAndUserEmailsTable";
|
2020-07-24 16:13:15 +02:00
|
|
|
import FixUserMainEmailRelation from "../src/auth/migrations/FixUserMainEmailRelation";
|
2020-07-25 10:28:50 +02:00
|
|
|
import DropNameFromUsers from "../src/auth/migrations/DropNameFromUsers";
|
|
|
|
import CreateMagicLinksTable from "../src/auth/migrations/CreateMagicLinksTable";
|
2020-04-23 15:43:15 +02:00
|
|
|
|
|
|
|
export const MIGRATIONS = [
|
|
|
|
CreateMigrationsTable,
|
2020-04-24 12:12:27 +02:00
|
|
|
CreateUsersAndUserEmailsTable,
|
2020-07-24 16:13:15 +02:00
|
|
|
FixUserMainEmailRelation,
|
2020-07-25 10:28:50 +02:00
|
|
|
DropNameFromUsers,
|
|
|
|
CreateMagicLinksTable,
|
2020-09-25 23:42:15 +02:00
|
|
|
];
|