Files
Tomas Dvorak 6e8fedf534 first commit
2026-04-13 17:46:58 +02:00

14 lines
218 B
Python

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