Преглед на файлове

CensusEntry Condition added to form
Closes #1, #3

Andrew Grant преди 5 месеца
родител
ревизия
b5df2792b6

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

@@ -2,8 +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=debug
 
 
-

+ 11 - 0
src/main/resources/db/changelog/2025/04/13-01-changelog.sql

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

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

@@ -4,5 +4,6 @@
 
     <include file="/db/changelog/2025/04/08-01-changelog.xml"/>
     <include file="/db/changelog/2025/04/11-01-changelog.sql"/>
+    <include file="/db/changelog/2025/04/13-01-changelog.sql"/>
 
 </databaseChangeLog>