mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00
12 lines
192 B
Python
12 lines
192 B
Python
class Migration:
|
|
"""
|
|
Base migration class.
|
|
"""
|
|
|
|
@staticmethod
|
|
def migrate():
|
|
"""
|
|
Code to run when migrating, override this method.
|
|
"""
|
|
pass
|