mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-19 09:45:28 +01:00
eea5e329af
Working jar imports
18 lines
386 B
Python
18 lines
386 B
Python
# Generated by database migrator
|
|
import peewee
|
|
|
|
|
|
def migrate(migrator, database, **kwargs):
|
|
migrator.rename_column("server_stats", "downloading", "importing")
|
|
|
|
"""
|
|
Write your migrations here.
|
|
"""
|
|
|
|
|
|
def rollback(migrator, database, **kwargs):
|
|
migrator.rename_column("server_stats", "importing", "downloading")
|
|
"""
|
|
Write your rollback migrations here.
|
|
"""
|