-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EDP-DDM-33610] Updated task-1-registry-db-modeling.adoc, added table…
…sSubjects.xml attachment Change-Id: I0d343b1303bfb3cf5e17962981340ef78f8a3e73 (cherry picked from commit a881de82e43997c64fe248315b5d369e7dafaadf)
- Loading branch information
Anton Tuhai
committed
Feb 5, 2025
1 parent
a5d8ed7
commit 3f9c09c
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
.../ua/modules/registry-develop/attachments/study-project/task-2/xml-temp/tablesSubjects.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://artifactory.control-plane-nexus/nexus/repository/extensions/com/epam/digital/data/platform/dbchangelog/4.5/dbchangelog-4.5.xsd | ||
http://www.liquibase.org/xml/ns/dbchangelog-ext http://artifactory.control-plane-nexus/nexus/repository/extensions/com/epam/digital/data/platform/liquibase-ext-schema/latest/liquibase-ext-schema-latest.xsd"> | ||
|
||
<changeSet author="registry owner" id="enum subject_type"> | ||
<comment>CREATE TYPE type_subject_type</comment> | ||
<ext:createType name="type_subject_type"> | ||
<ext:asEnum> | ||
<ext:label translation="Фізична особа">INDIVIDUAL</ext:label> | ||
<ext:label translation="ФОП">ENTREPRENEUR</ext:label> | ||
<ext:label translation="Юридична особа">LEGAL</ext:label> | ||
<ext:label translation="Чиновник">OFFICER</ext:label> | ||
</ext:asEnum> | ||
</ext:createType> | ||
</changeSet> | ||
|
||
<changeSet author="registry owner" id="enum subject_status"> | ||
<comment>CREATE TYPE type_subject_status</comment> | ||
<ext:createType name="type_subject_status"> | ||
<ext:asEnum> | ||
<ext:label translation="скасовано">CANCELED</ext:label> | ||
<ext:label translation="зареєстровано">REGISTERED</ext:label> | ||
<ext:label translation="в стані припинення">SUSPENDING</ext:label> | ||
<ext:label translation="припинено">SUSPENDED</ext:label> | ||
<ext:label translation="порушено справу про банкрутство">BANKRUPTCY</ext:label> | ||
<ext:label translation="порушено справу про банкрутство (санація)">SANCTION</ext:label> | ||
<ext:label translation="зареєстровано, свідоцтво про державну реєстрацію недійсне">NOTVALID</ext:label> | ||
</ext:asEnum> | ||
</ext:createType> | ||
</changeSet> | ||
|
||
</databaseChangeLog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters