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 315B

12345678910111213
  1. #-*- coding: utf-8 -*-
  2. ##@brief Abtract class for migration handlers
  3. class DummyMigrationHandler(object):
  4. def __init__(self, *args, **kwargs):
  5. pass
  6. def register_change(self, model, uid, initial_state, new_state):
  7. pass
  8. def register_model_state(self, em, state_hash):
  9. pass