Files
penracourses/atlas/migrations/0084_resource_open_access.py
T

19 lines
518 B
Python

# Generated by Django 5.2.7 on 2025-11-15 22:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0083_resource_created_date_resource_modified_date'),
]
operations = [
migrations.AddField(
model_name='resource',
name='open_access',
field=models.BooleanField(default=True, help_text='If true the resource is available to all users, otherwise only in the context of cases.'),
),
]