This commit is contained in:
Ross
2023-08-07 22:02:25 +01:00
parent 6ab1355919
commit 671c6f9ca3
5 changed files with 75 additions and 1 deletions
@@ -0,0 +1,18 @@
# Generated by Django 4.1.4 on 2023-08-07 21:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('atlas', '0008_remove_case_scrapped_case_archive'),
]
operations = [
migrations.RenameField(
model_name='series',
old_name='description',
new_name='info',
),
]
@@ -0,0 +1,18 @@
# Generated by Django 4.1.4 on 2023-08-07 21:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0009_rename_description_series_info'),
]
operations = [
migrations.AddField(
model_name='series',
name='description',
field=models.CharField(blank=True, help_text='Description of the series. This is usually visable to the user (as the name of the stack)', max_length=255, null=True),
),
]
+3 -1
View File
@@ -199,11 +199,13 @@ class SeriesImageBase(models.Model):
class SeriesBase(models.Model):
description = models.TextField(
info = models.TextField(
blank=True,
help_text="Description of stack, for admin organisation, will not be visible when taking",
)
description = models.CharField(null=True, blank=True, max_length=255, help_text="Description of the series. This is usually visable to the user (as the name of the stack)")
open_access = models.BooleanField(
help_text="If a series should be freely available to browse", default=True
)
@@ -0,0 +1,18 @@
# Generated by Django 4.1.4 on 2023-08-07 21:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('longs', '0003_exam_candidates_only_alter_exam_active_and_more'),
]
operations = [
migrations.RenameField(
model_name='longseries',
old_name='description',
new_name='info',
),
]
@@ -0,0 +1,18 @@
# Generated by Django 4.1.4 on 2023-08-07 21:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0004_rename_description_longseries_info'),
]
operations = [
migrations.AddField(
model_name='longseries',
name='description',
field=models.CharField(blank=True, help_text='Description of the series. This is usually visable to the user (as the name of the stack)', max_length=255, null=True),
),
]