mirror of
https://github.com/Dvorinka/SpotifyRecAlg.git
synced 2026-06-03 20:13:03 +00:00
14 lines
218 B
Python
14 lines
218 B
Python
class Migration:
|
|
"""
|
|
Base migration class.
|
|
"""
|
|
|
|
enabled: bool = True
|
|
|
|
@staticmethod
|
|
def migrate():
|
|
"""
|
|
Code to run when migrating, override this method.
|
|
"""
|
|
pass
|