mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
30768dd5d6
+ rewrite migration collection + prevent logging invalid track logs + add jsoni
13 lines
217 B
Python
13 lines
217 B
Python
class Migration:
|
|
"""
|
|
Base migration class.
|
|
"""
|
|
enabled: bool = True
|
|
|
|
@staticmethod
|
|
def migrate():
|
|
"""
|
|
Code to run when migrating, override this method.
|
|
"""
|
|
pass
|