mungai-njoroge 9c9a187083 create a base class for all migration
+ save folder to playlist, sorting by last_mod
2023-07-31 16:44:37 +03:00

17 lines
227 B
Python

class Migration:
"""
Base migration class.
"""
name: str
"""
Name of the migration.
"""
@staticmethod
def migrate():
"""
Code to run when migrating
"""
pass