mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 12:31:22 -05:00
- Add HTMX-powered filtering with instant updates - Add smooth transitions and loading states - Improve visual hierarchy and styling - Add review notes functionality - Add confirmation dialogs for actions - Make navigation sticky - Add hover effects and visual feedback - Improve dark mode support
27 lines
726 B
Python
27 lines
726 B
Python
# Generated by Django 5.1.3 on 2024-11-13 02:14
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("companies", "0002_add_designer_model"),
|
|
("rides", "0006_remove_historicalridemodel_typical_capacity_per_hour_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="ridemodel",
|
|
name="manufacturer",
|
|
field=models.ForeignKey(
|
|
blank=True,
|
|
null=True,
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name="ride_models",
|
|
to="companies.manufacturer",
|
|
),
|
|
),
|
|
]
|