mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-10 21:17:33 +00:00
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
|