chore: Migrate region module to use DML (#7837)

This commit is contained in:
Oli Juhl
2024-06-29 13:14:52 +00:00
committed by GitHub
parent 7c3f5cc334
commit fa6cd84049
10 changed files with 173 additions and 155 deletions
@@ -1,5 +1,7 @@
{
"namespaces": ["public"],
"namespaces": [
"public"
],
"name": "public",
"tables": [
{
@@ -86,16 +88,11 @@
"name": "region",
"schema": "public",
"indexes": [
{
"columnNames": ["deleted_at"],
"composite": false,
"keyName": "IDX_region_deleted_at",
"primary": false,
"unique": false
},
{
"keyName": "region_pkey",
"columnNames": ["id"],
"columnNames": [
"id"
],
"composite": false,
"primary": true,
"unique": true
@@ -159,14 +156,65 @@
"primary": false,
"nullable": true,
"mappedType": "text"
},
"metadata": {
"name": "metadata",
"type": "jsonb",
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": true,
"mappedType": "json"
},
"created_at": {
"name": "created_at",
"type": "timestamptz",
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": false,
"length": 6,
"default": "now()",
"mappedType": "datetime"
},
"updated_at": {
"name": "updated_at",
"type": "timestamptz",
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": false,
"length": 6,
"default": "now()",
"mappedType": "datetime"
},
"deleted_at": {
"name": "deleted_at",
"type": "timestamptz",
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": true,
"length": 6,
"mappedType": "datetime"
}
},
"name": "region_country",
"schema": "public",
"indexes": [
{
"keyName": "IDX_region_country_region_id_iso_2_unique",
"columnNames": [],
"composite": false,
"primary": false,
"unique": false,
"expression": "CREATE UNIQUE INDEX IF NOT EXISTS \"IDX_region_country_region_id_iso_2_unique\" ON \"region_country\" (region_id, iso_2)"
},
{
"keyName": "region_country_pkey",
"columnNames": ["iso_2"],
"columnNames": [
"iso_2"
],
"composite": false,
"primary": true,
"unique": true
@@ -176,9 +224,13 @@
"foreignKeys": {
"region_country_region_id_foreign": {
"constraintName": "region_country_region_id_foreign",
"columnNames": ["region_id"],
"columnNames": [
"region_id"
],
"localTableName": "public.region_country",
"referencedColumnNames": ["id"],
"referencedColumnNames": [
"id"
],
"referencedTableName": "public.region",
"deleteRule": "set null",
"updateRule": "cascade"
@@ -0,0 +1,39 @@
import { generatePostgresAlterColummnIfExistStatement } from "@medusajs/utils"
import { Migration } from "@mikro-orm/migrations"
export class Migration20240624200006 extends Migration {
async up(): Promise<void> {
this.addSql(
'ALTER TABLE IF EXISTS "region_country" ADD COLUMN IF NOT EXISTS "metadata" jsonb null, ADD COLUMN "created_at" timestamptz NOT NULL DEFAULT NOW(), ADD COLUMN "updated_at" timestamptz NOT NULL DEFAULT NOW(), ADD COLUMN "deleted_at" timestamptz NULL;'
)
this.addSql(
generatePostgresAlterColummnIfExistStatement(
"region_country",
["region_id"],
`DROP NOT NULL`
)
)
}
async down(): Promise<void> {
this.addSql(
'ALTER TABLE IF EXISTS "region_country" DROP COLUMN IF EXISTS "metadata";'
)
this.addSql(
'ALTER TABLE IF EXISTS "region_country" DROP COLUMN IF EXISTS "created_at";'
)
this.addSql(
'ALTER TABLE IF EXISTS "region_country" DROP COLUMN IF EXISTS "updated_at";'
)
this.addSql(
'ALTER TABLE IF EXISTS "region_country" DROP COLUMN IF EXISTS "deleted_at";'
)
this.addSql(
generatePostgresAlterColummnIfExistStatement(
"region_country",
["region_id"],
`SET NOT NULL`
)
)
}
}