Skip to content

Commit e7469e0

Browse files
committed
table parameters
Signed-off-by: Thang PHAM <[email protected]>
1 parent 4273df5 commit e7469e0

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
2+
<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-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
3+
<changeSet author="phamquy (generated)" id="1733340260350-1">
4+
<createTable tableName="dynamic_security_analysis_parameters">
5+
<column name="id" type="UUID">
6+
<constraints nullable="false" primaryKey="true" primaryKeyName="dynamic_security_analysis_parametersPK"/>
7+
</column>
8+
<column name="contingencies_start_time" type="FLOAT(53)"/>
9+
<column name="provider" type="VARCHAR(255)"/>
10+
<column name="scenario_duration" type="FLOAT(53)"/>
11+
</createTable>
12+
</changeSet>
13+
</databaseChangeLog>

src/main/resources/db/changelog/db.changelog-master.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ databaseChangeLog:
33
- include:
44
file: changesets/changelog_20241105T150604Z.xml
55
relativeToChangelogFile: true
6+
7+
- include:
8+
file: changesets/changelog_20241204T192412Z.xml
9+
relativeToChangelogFile: true

0 commit comments

Comments
 (0)