Files
swingmusic-extended/app/migrations/base.py
T

12 lines
192 B
Python

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