2023-08-12 18:23:28 +03:00

12 lines
192 B
Python

class Migration:
"""
Base migration class.
"""
@staticmethod
def migrate():
"""
Code to run when migrating, override this method.
"""
pass