mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-14 09:06:43 +03:00
Replaces two functions calls, that were deprecated and aliases for the new function name: - Migrator.python -> Migration.run - Migrator.change_column -> Migrator.change_field
12 lines
338 B
Python
12 lines
338 B
Python
import peewee as pw
|
|
|
|
from frigate.models import Event
|
|
|
|
|
|
def migrate(migrator, database, fake=False, **kwargs):
|
|
migrator.change_fields(Event, sub_label=pw.CharField(max_length=100, null=True))
|
|
|
|
|
|
def rollback(migrator, database, fake=False, **kwargs):
|
|
migrator.change_fields(Event, sub_label=pw.CharField(max_length=20, null=True))
|