# Generated by Django 5.1.2 on 2024-10-28 20:17 import django.db.models.deletion import simple_history.models from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ('companies', '0001_initial'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='HistoricalPark', fields=[ ('id', models.BigIntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID')), ('name', models.CharField(max_length=255)), ('slug', models.SlugField(max_length=255)), ('location', models.CharField(max_length=255)), ('description', models.TextField(blank=True)), ('status', models.CharField(choices=[('OPERATING', 'Operating'), ('CLOSED_TEMP', 'Temporarily Closed'), ('CLOSED_PERM', 'Permanently Closed'), ('UNDER_CONSTRUCTION', 'Under Construction'), ('DEMOLISHED', 'Demolished')], default='OPERATING', max_length=20)), ('opening_date', models.DateField(blank=True, null=True)), ('closing_date', models.DateField(blank=True, null=True)), ('operating_season', models.CharField(blank=True, max_length=255)), ('size_acres', models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True)), ('website', models.URLField(blank=True)), ('average_rating', models.DecimalField(blank=True, decimal_places=2, max_digits=3, null=True)), ('created_at', models.DateTimeField(blank=True, editable=False, null=True)), ('updated_at', models.DateTimeField(blank=True, editable=False)), ('history_id', models.AutoField(primary_key=True, serialize=False)), ('history_date', models.DateTimeField(db_index=True)), ('history_change_reason', models.CharField(max_length=100, null=True)), ('history_type', models.CharField(choices=[('+', 'Created'), ('~', 'Changed'), ('-', 'Deleted')], max_length=1)), ('history_user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL)), ('owner', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='companies.company')), ], options={ 'verbose_name': 'historical park', 'verbose_name_plural': 'historical parks', 'ordering': ('-history_date', '-history_id'), 'get_latest_by': ('history_date', 'history_id'), }, bases=(simple_history.models.HistoricalChanges, models.Model), ), migrations.CreateModel( name='Park', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=255)), ('slug', models.SlugField(max_length=255, unique=True)), ('location', models.CharField(max_length=255)), ('description', models.TextField(blank=True)), ('status', models.CharField(choices=[('OPERATING', 'Operating'), ('CLOSED_TEMP', 'Temporarily Closed'), ('CLOSED_PERM', 'Permanently Closed'), ('UNDER_CONSTRUCTION', 'Under Construction'), ('DEMOLISHED', 'Demolished')], default='OPERATING', max_length=20)), ('opening_date', models.DateField(blank=True, null=True)), ('closing_date', models.DateField(blank=True, null=True)), ('operating_season', models.CharField(blank=True, max_length=255)), ('size_acres', models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True)), ('website', models.URLField(blank=True)), ('average_rating', models.DecimalField(blank=True, decimal_places=2, max_digits=3, null=True)), ('created_at', models.DateTimeField(auto_now_add=True, null=True)), ('updated_at', models.DateTimeField(auto_now=True)), ('owner', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='parks', to='companies.company')), ], options={ 'ordering': ['name'], }, ), migrations.CreateModel( name='HistoricalParkArea', fields=[ ('id', models.BigIntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID')), ('name', models.CharField(max_length=255)), ('slug', models.SlugField(max_length=255)), ('description', models.TextField(blank=True)), ('opening_date', models.DateField(blank=True, null=True)), ('closing_date', models.DateField(blank=True, null=True)), ('created_at', models.DateTimeField(blank=True, editable=False, null=True)), ('updated_at', models.DateTimeField(blank=True, editable=False)), ('history_id', models.AutoField(primary_key=True, serialize=False)), ('history_date', models.DateTimeField(db_index=True)), ('history_change_reason', models.CharField(max_length=100, null=True)), ('history_type', models.CharField(choices=[('+', 'Created'), ('~', 'Changed'), ('-', 'Deleted')], max_length=1)), ('history_user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL)), ('park', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='parks.park')), ], options={ 'verbose_name': 'historical park area', 'verbose_name_plural': 'historical park areas', 'ordering': ('-history_date', '-history_id'), 'get_latest_by': ('history_date', 'history_id'), }, bases=(simple_history.models.HistoricalChanges, models.Model), ), migrations.CreateModel( name='ParkArea', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=255)), ('slug', models.SlugField(max_length=255)), ('description', models.TextField(blank=True)), ('opening_date', models.DateField(blank=True, null=True)), ('closing_date', models.DateField(blank=True, null=True)), ('created_at', models.DateTimeField(auto_now_add=True, null=True)), ('updated_at', models.DateTimeField(auto_now=True)), ('park', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='areas', to='parks.park')), ], options={ 'ordering': ['name'], 'unique_together': {('park', 'slug')}, }, ), ]