15 lines
306 B
Python
15 lines
306 B
Python
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
dependencies = [
|
||
|
|
("pobsync_backend", "0009_remove_scheduleconfig_user"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.RemoveField(
|
||
|
|
model_name="globalconfig",
|
||
|
|
name="pobsync_home",
|
||
|
|
),
|
||
|
|
]
|