Skip to content

Commit

Permalink
backport 047efb7
Browse files Browse the repository at this point in the history
  • Loading branch information
edigonzales committed Feb 21, 2024
1 parent 6a233e1 commit b69461f
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ public class Ili2pgImportSchema extends Ili2pgAbstractTask {
public boolean createEnumColAsItfCode = false;
@Input
@Optional
public boolean createEnumTabsWithId = false;
@Input
@Optional
public boolean createImportTabs = false;
@Input
@Optional
Expand Down Expand Up @@ -216,6 +219,9 @@ private void init(Config settings) {
if (createEnumColAsItfCode) {
settings.setCreateEnumColAsItfCode(settings.CREATE_ENUMCOL_AS_ITFCODE_YES);
}
if (createEnumTabsWithId) {
settings.setCreateEnumDefs(Config.CREATE_ENUM_DEFS_MULTI_WITH_ID);
}
if (createImportTabs) {
settings.setCreateImportTabs(true);
}
Expand Down

0 comments on commit b69461f

Please sign in to comment.