mirror of
https://github.com/daniviga/django-ram.git
synced 2025-12-26 07:18:32 +01:00
* Fix a search filter when no catalogs are returned * Code refactoring to simplify templates * Remove duplicated code * Remove dead code * More improvements, clean up and add featured items in homepage * Fix a type and better page navigation
22 lines
517 B
Python
22 lines
517 B
Python
# Generated by Django 6.0 on 2025-12-24 13:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("roster", "0038_alter_rollingstock_rolling_class"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="rollingstock",
|
|
name="featured",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Featured rolling stock will appear on the homepage",
|
|
),
|
|
),
|
|
]
|