mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-18 17:15:13 +01: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")
|