فهرست منبع

Added widowed to condition
Closes #80

Andrew Grant 4 ماه پیش
والد
کامیت
7076c6aab5

+ 1 - 0
src/main/java/scot/carricksoftware/grants/enums/censusentry/CensusEntryCondition.java

@@ -8,6 +8,7 @@ package scot.carricksoftware.grants.enums.censusentry;
 public enum CensusEntryCondition {
 
     @SuppressWarnings("unused") WIDOW("Widow"),
+    @SuppressWarnings("unused") WIDOWED("Widowed"),
     @SuppressWarnings("unused") WIDOWER("Widower"),
     @SuppressWarnings("unused") MARRIED("Married"),
     @SuppressWarnings("unused") SINGLE("Single");

+ 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
 
 

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

@@ -0,0 +1,11 @@
+/*
+ * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
+ *
+ */
+
+-- liquibase formatted sql
+
+-- changeset apg:1753312187713-1
+ALTER TABLE person
+    ADD certified_year_of_death VARCHAR(255) NULL;
+

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

@@ -46,6 +46,7 @@
     <include file="/db/changelog/2025/07/22-03-changelog.sql"/>
     <include file="/db/changelog/2025/07/22-04-changelog.sql"/>
     <include file="/db/changelog/2025/07/22-05-changelog.sql"/>
+    <include file="/db/changelog/2025/07/24-01-changelog.sql"/>