Refactor ContactRequest to separate date and time fields, add Flyway for database migrations, and initialize schema.

This commit is contained in:
2025-06-29 21:11:29 +09:00
parent a9d8a8cf43
commit e6ca52e72d
5 changed files with 66 additions and 13 deletions

View File

@@ -54,10 +54,10 @@
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- </plugin>-->
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- </plugin>-->
</plugins>
</build>
@@ -92,6 +92,10 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
</dependency>
<dependency>
<groupId>dev.rheinsw</groupId>