Нема описа
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 350B

123456789101112131415
  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
  10. def init_db(self):
  11. pass