mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
* Add support for private documents * Fix migrations after merge * Rebase fixtures * Filter private decoder docs * Enable preview of unpublished pages
19 lines
422 B
Python
19 lines
422 B
Python
# Generated by Django 4.2.5 on 2023-10-06 19:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("metadata", "0012_alter_decoder_manufacturer_decoderdocument"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="decoderdocument",
|
|
name="private",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|