убрал ненужную колонку в recruitment
This commit is contained in:
parent
6ec5621653
commit
c2d5356f3b
2 changed files with 17 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<databaseChangeLog
|
||||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.9"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.9
|
||||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.9.xsd">
|
||||
|
||||
|
||||
<changeSet id="0001" author="adel.ka">
|
||||
<comment>alter table public.recruitment</comment>
|
||||
<sql>
|
||||
ALTER TABLE public.recruitment
|
||||
DROP COLUMN IF EXISTS enabled;
|
||||
</sql>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
||||
|
|
@ -24,4 +24,5 @@
|
|||
<include file="20250415_SUPPORT-9099_add_pk.xml" relativeToChangelogFile="true"/>
|
||||
<include file="20250605_SUPPORT-9212_reconcile.xml" relativeToChangelogFile="true"/>
|
||||
<include file="20250618_add_active_column.xml" relativeToChangelogFile="true"/>
|
||||
<include file="20250704_drop_column.xml" relativeToChangelogFile="true"/>
|
||||
</databaseChangeLog>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue