Skip to content

Commit

Permalink
EA-115 Add SMLV as C_configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
hero78 committed Dec 24, 2024
1 parent 0fa850e commit 0a9eeca
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,21 @@
<modifyDataType tableName="m_interest_rate" columnName="current_rate" newDataType="DECIMAL(10,8)"/>
</changeSet>

<changeSet author="[email protected]" id="add_sMLV_seqence_configuration" context="postgresql">
<sql>
SELECT SETVAL('c_configuration_id_seq', COALESCE(MAX(id), 0)+1, false ) FROM c_configuration;
</sql>
</changeSet>
<changeSet author="[email protected]" id="create-c_configuration-SMLV">
<insert tableName="c_configuration">
<column name="name" value="SMLV"/>
<column name="value" valueNumeric="1300"/>
<column name="date_value"/>
<column name="string_value"/>
<column name="enabled" valueBoolean="true"/>
<column name="is_trap_door" valueBoolean="false"/>
<column name="description" value="Salario Minimo Legal Vigente"/>
</insert>
</changeSet>

</databaseChangeLog>

0 comments on commit 0a9eeca

Please sign in to comment.