11 lines
256 B
Python
11 lines
256 B
Python
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
dependencies = [
|
||
|
|
("location_data", "0013_rename_cluster_assignment_index"),
|
||
|
|
("location_data", "0014_blocksubdivision_chunk_size_30m"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = []
|