mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-07-29 23:13:49 +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
|