No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

migration_handler.py 401B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. from lodel.datasource.generic.migrationhandler import GenericMigrationHandler
  3. from lodel.datasource.mongodb.datasource import MongoDbDataSource
  4. import lodel.datasource.mongodb.utils as utils
  5. from lodel.editorial_model.components import EmClass, EmField
  6. class MigrationHandlerChangeError(Exception):
  7. pass
  8. class MongoDbMigrationHandler(GenericMigrationHandler):
  9. pass