mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
18 lines
378 B
Python
18 lines
378 B
Python
# Generated by database migrator
|
|
import peewee
|
|
|
|
|
|
def migrate(migrator, database, **kwargs):
|
|
migrator.rename_column("api_keys", "superuser", "full_access")
|
|
|
|
"""
|
|
Write your migrations here.
|
|
"""
|
|
|
|
|
|
def rollback(migrator, database, **kwargs):
|
|
migrator.rename_column("api_keys", "full_access", "superuser")
|
|
"""
|
|
Write your rollback migrations here.
|
|
"""
|