11 lines
244 B
Python
11 lines
244 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("access_control", "0004_enable_default_feature_access"),
|
|
("farm_hub", "0007_farmhub_subscription_plan"),
|
|
]
|
|
|
|
operations = []
|