10 lines
189 B
Python
10 lines
189 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("access_control", "0002_link_subscription_plan_to_farm"),
|
|
]
|
|
|
|
operations = []
|