mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
9c9a187083
+ save folder to playlist, sorting by last_mod
17 lines
227 B
Python
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
|