Skip to content

Commit

Permalink
Merge pull request #123 from opengisch/schemaimport
Browse files Browse the repository at this point in the history
introduce new actiontype SCHEMA_IMPORT
  • Loading branch information
signedav authored Nov 27, 2024
2 parents 4c2dc15 + f38d674 commit 10cfc19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modelbaker/utils/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@


class DbActionType(Enum):
"""Defines constants for generate, import data, or export actions of modelbaker."""
"""Defines constants for generate, schema_import, import data, or export actions of modelbaker."""

GENERATE = 1
IMPORT_DATA = 2
EXPORT = 3
SCHEMA_IMPORT = 4


class OptimizeStrategy(Enum):
Expand Down

0 comments on commit 10cfc19

Please sign in to comment.