mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
e06fe8a52a
Apply black formatting to codebase
11 lines
256 B
Python
11 lines
256 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")
|