We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab49245 commit 6cc6d40Copy full SHA for 6cc6d40
2 files changed
pom.xml
@@ -77,6 +77,12 @@
77
<scope>runtime</scope>
78
</dependency>
79
80
+<dependency>
81
+ <groupId>org.flywaydb</groupId>
82
+ <artifactId>flyway-core</artifactId>
83
+ </dependency>
84
+
85
86
<dependency>
87
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-data-jpa</artifactId>
src/main/resources/db/migration/V1__entry.sql
@@ -0,0 +1,11 @@
1
+CREATE TABLE public.entry (
2
+ id bigint NOT NULL,
3
+ created timestamp without time zone,
4
+ description character varying(255),
5
+ last_updated timestamp without time zone,
6
+ latitude double precision NOT NULL,
7
+ longitude double precision NOT NULL,
8
+ owner character varying(255),
9
+ status character varying(255)
10
+);
11
0 commit comments