mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
* Implement a customer manager for flatpages * Implement public manager for private objects * Add support for unpublished objects in roster and consist * Add support for unpublished objects in bookshelf * Update filtering on REST views * Use uuid in urls.py * Increment version
19 lines
412 B
Python
19 lines
412 B
Python
# Generated by Django 5.1.2 on 2024-11-04 12:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("roster", "0027_alter_rollingstock_decoder_interface"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="rollingstock",
|
|
name="published",
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|