Cleanup SQLA migrate changes + "Un-Abstract" the type definitions

Abstracting the type definitions provides little gain for high risk. The
abstraction can *never* be updated, otherwise it would affect the result of
existing migrations that depend on the abstraction.
This commit is contained in:
Kiall Mac Innes
2012-10-28 18:01:34 +00:00
parent 0310f220b7
commit b8bbfd3d34
7 changed files with 77 additions and 108 deletions

View File

@@ -55,7 +55,7 @@ setup(
postgresql = moniker.storage.impl_sqlalchemy:SQLAlchemyStorage
sqlite = moniker.storage.impl_sqlalchemy:SQLAlchemyStorage
[moniker.cli]
database init = InitCommand
database init = moniker.cli.database:InitCommand
database sync = moniker.cli.database:SyncCommand
""")
)