mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
8 lines
250 B
Python
8 lines
250 B
Python
# Generated by database migrator
|
|
import peewee
|
|
|
|
def migrate(migrator, db):
|
|
migrator.rename_column('backups', 'directories', 'excluded_dirs')
|
|
|
|
def rollback(migrator, db):
|
|
migrator.rename_column('backups', 'excluded_dirs', 'directories') |