mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
2d9529ba0c
Allow users to reset cookie and api secret Add Crafty row to table on fresh install Change inserts to updates for crafty settings table.
17 lines
395 B
Python
17 lines
395 B
Python
# Generated by database migrator
|
|
import peewee
|
|
|
|
|
|
def migrate(migrator, database, **kwargs):
|
|
migrator.add_columns("crafty_settings", cookie_secret=peewee.CharField(default=""))
|
|
"""
|
|
Write your migrations here.
|
|
"""
|
|
|
|
|
|
def rollback(migrator, database, **kwargs):
|
|
migrator.drop_columns("crafty_settings", ["cookie_secret"])
|
|
"""
|
|
Write your rollback migrations here.
|
|
"""
|