Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add migration timestamp #165

Merged
merged 3 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions changelog/db.changelog-1.62.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-3.9.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd">
<changeSet author="John Watson" id="1">
<tagDatabase tag="v1.62.0" />
</changeSet>
<changeSet author="John Watson" id="2">
<addColumn tableName="paymentRequests">
<column name="migrated" type="TIMESTAMP" />
</addColumn>
<addColumn tableName="completedPaymentRequests">
<column name="migrated" type="TIMESTAMP" />
</addColumn>
<addColumn tableName="holds">
<column name="migrated" type="TIMESTAMP" />
</addColumn>
</changeSet>
</databaseChangeLog>
1 change: 1 addition & 0 deletions changelog/db.changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,5 @@
<include file="changelog/db.changelog-1.59.xml"/>
<include file="changelog/db.changelog-1.60.xml"/>
<include file="changelog/db.changelog-1.61.xml"/>
<include file="changelog/db.changelog-1.62.xml"/>
</databaseChangeLog>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffc-pay-processing",
"version": "2.52.45",
"version": "2.52.46",
"description": "Payment Hub processing service",
"homepage": "https://github.com/DEFRA/ffc-pay-processing",
"main": "app/index.js",
Expand Down