mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 14:31:08 -05:00
14 lines
279 B
Python
14 lines
279 B
Python
from django.db import migrations
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('companies', '0002_stats_fields'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='company',
|
|
name='total_parks',
|
|
),
|
|
]
|