mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 13:11:08 -05:00
26 lines
627 B
Python
26 lines
627 B
Python
# Generated by Django 5.1.2 on 2024-10-29 02:02
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("companies", "0004_add_total_parks"),
|
|
("rides", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="ride",
|
|
name="manufacturer",
|
|
field=models.ForeignKey(
|
|
default=1,
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
to="companies.manufacturer",
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|