Browse Source

Birth Certificate mother and father place added to form

Andrew Grant 5 months ago
parent
commit
e0e4f11347

+ 1 - 1
src/main/resources/application.properties

@@ -2,7 +2,7 @@ spring.application.name=grants
 server.port=8086
 server.servlet.context-path=/grants
 spring.mvc.format.date=dd-MM-yyyy
-spring.profiles.active=dev
+spring.profiles.active=uat
 logging.level.scot.carricksoftware=trace
 
 

+ 12 - 0
src/main/resources/db/changelog/2025/07/07-01-changelog.sql

@@ -0,0 +1,12 @@
+/*
+ * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
+ *
+ */
+
+-- liquibase formatted sql
+
+-- changeset apg:1751878720346-1
+ALTER TABLE birth_certificate
+    ADD father_place_of_birth VARCHAR(255) NULL,
+    ADD mother_place_of_birth VARCHAR(255) NULL;
+

+ 1 - 0
src/main/resources/db/changelog/master.xml

@@ -40,6 +40,7 @@
     <include file="/db/changelog/2025/07/02-01-changelog.sql"/>
     <include file="/db/changelog/2025/07/04-01-changelog.sql"/>
     <include file="/db/changelog/2025/07/04-02-changelog.sql"/>
+    <include file="/db/changelog/2025/07/07-01-changelog.sql"/>
 
 
 </databaseChangeLog>

+ 0 - 1
src/test/java/scot/carricksoftware/grants/bootstrap/DataLoadCertificatesBirthCertificatesTest.java

@@ -118,5 +118,4 @@ public class DataLoadCertificatesBirthCertificatesTest {
         assertEquals("Drip", captor.getValue().getFatherPlaceOfBirth());
     }
 
-
 }