From 24f90764e8bb95044b409f162de47a6953cb0965 Mon Sep 17 00:00:00 2001 From: xxeol2 Date: Wed, 27 Sep 2023 10:44:03 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20flyway=20sql=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V6__school_notnull.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 backend/src/main/resources/db/migration/V6__school_notnull.sql diff --git a/backend/src/main/resources/db/migration/V6__school_notnull.sql b/backend/src/main/resources/db/migration/V6__school_notnull.sql new file mode 100644 index 000000000..51735574f --- /dev/null +++ b/backend/src/main/resources/db/migration/V6__school_notnull.sql @@ -0,0 +1,5 @@ +alter table festival + modify school_id bigint not null; + +alter table ticket + modify school_id bigint not null;