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
def migrate(migrator, database, **kwargs):
migrator.add_columns('users', preparing=peewee.BooleanField(default=False))
"""
Write your migrations here.
"""
def rollback(migrator, database, **kwargs):
migrator.drop_columns('users', ['preparing'])
"""
Write your rollback migrations here.
"""