From 2ef11944cb3bec43df487882efbf5d3f9d2853f2 Mon Sep 17 00:00:00 2001 From: This2sho Date: Wed, 3 Apr 2024 14:26:03 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20flway=20v2=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/mysql/V2.0.0__add_point_parking_table.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/main/resources/db/migration/mysql/V2.0.0__add_point_parking_table.sql diff --git a/src/main/resources/db/migration/mysql/V2.0.0__add_point_parking_table.sql b/src/main/resources/db/migration/mysql/V2.0.0__add_point_parking_table.sql new file mode 100644 index 00000000..a4779e0d --- /dev/null +++ b/src/main/resources/db/migration/mysql/V2.0.0__add_point_parking_table.sql @@ -0,0 +1,2 @@ +ALTER TABLE parking + ADD COLUMN point GEOMETRY;