Skip to content

Commit

Permalink
Add new APIKEY columns
Browse files Browse the repository at this point in the history
As introduced in stevespringett/Alpine#537

Signed-off-by: nscuro <nscuro@protonmail.com>
  • Loading branch information
nscuro committed Mar 20, 2024
1 parent b954579 commit 05e2560
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/resources/migration/changelog-main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
<!-- Use separate changelogs per release. -->
<include file="migration/changelog-v5.3.0.xml"/>
<include file="migration/changelog-v5.4.0.xml"/>
<include file="migration/changelog-v5.5.0.xml"/>
<include file="migration/changelog-procedures.xml"/>
</databaseChangeLog>
18 changes: 18 additions & 0 deletions src/main/resources/migration/changelog-v5.5.0.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
objectQuotingStrategy="QUOTE_ALL_OBJECTS"
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
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/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
<changeSet id="v5.5.0-1" author="nscuro@protonmail.com">
<addColumn tableName="APIKEY">
<column name="COMMENT" type="VARCHAR(255)"/>
<column name="CREATED" type="TIMESTAMP WITH TIME ZONE"/>
<column name="LAST_USED" type="TIMESTAMP WITH TIME ZONE"/>
</addColumn>
</changeSet>
</databaseChangeLog>

0 comments on commit 05e2560

Please sign in to comment.