crafty-4/app/migrations/20220312_support_log_status.py

17 lines
373 B
Python
Raw Normal View History

2022-03-13 12:29:26 +00:00
# Generated by database migrator
import peewee
2022-03-13 12:29:26 +00:00
def migrate(migrator, database, **kwargs):
migrator.add_columns("users", preparing=peewee.BooleanField(default=False))
2022-03-13 12:29:26 +00:00
"""
Write your migrations here.
"""
def rollback(migrator, database, **kwargs):
migrator.drop_columns("users", ["preparing"])
2022-03-13 12:29:26 +00:00
"""
Write your rollback migrations here.
"""