Skip to content

Commit

Permalink
introduce new actiontype SCHEMA_IMPORT.
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Nov 27, 2024
1 parent 6ab186b commit f38d674
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 f38d674

Please sign in to comment.