mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
27c4924327
+ misc
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
|