mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
e06fe8a52a
Apply black formatting to codebase
19 lines
409 B
Python
19 lines
409 B
Python
# Generated by database migrator
|
|
import peewee
|
|
|
|
|
|
def migrate(migrator, database, **kwargs):
|
|
migrator.add_columns(
|
|
"server_stats", waiting_start=peewee.BooleanField(default=False)
|
|
)
|
|
"""
|
|
Write your migrations here.
|
|
"""
|
|
|
|
|
|
def rollback(migrator, database, **kwargs):
|
|
migrator.drop_columns("server_stats", ["waiting_start"])
|
|
"""
|
|
Write your rollback migrations here.
|
|
"""
|