Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
2d22b865
Verified
Commit
2d22b865
authored
9 months ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
fix: include help texts in the database model fields
parent
8883ecb2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
program/migrations/0096_alter_category_description_alter_category_is_active_and_more.py
+290
-0
290 additions, 0 deletions
...category_description_alter_category_is_active_and_more.py
with
290 additions
and
0 deletions
program/migrations/0096_alter_category_description_alter_category_is_active_and_more.py
0 → 100644
+
290
−
0
View file @
2d22b865
# Generated by Django 4.2.13 on 2024-06-11 18:58
import
versatileimagefield.fields
from
django.conf
import
settings
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
migrations
.
swappable_dependency
(
settings
.
AUTH_USER_MODEL
),
(
"
program
"
,
"
0095_alter_radiosettings_cba_domains_and_more
"
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
"
category
"
,
name
=
"
description
"
,
field
=
models
.
TextField
(
blank
=
True
,
help_text
=
"
Description of the category.
"
),
),
migrations
.
AlterField
(
model_name
=
"
category
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if category is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
category
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of the category.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
category
"
,
name
=
"
slug
"
,
field
=
models
.
SlugField
(
help_text
=
"
Slug of the category.
"
,
max_length
=
32
,
unique
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
category
"
,
name
=
"
subtitle
"
,
field
=
models
.
CharField
(
blank
=
True
,
help_text
=
"
Subtitle of the category.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
fundingcategory
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if funding category is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
fundingcategory
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of the funding category.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
fundingcategory
"
,
name
=
"
slug
"
,
field
=
models
.
SlugField
(
help_text
=
"
Slug of the funding category.
"
,
max_length
=
32
,
unique
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
host
"
,
name
=
"
biography
"
,
field
=
models
.
TextField
(
blank
=
True
,
help_text
=
"
Biography of the host.
"
),
),
migrations
.
AlterField
(
model_name
=
"
host
"
,
name
=
"
email
"
,
field
=
models
.
EmailField
(
blank
=
True
,
help_text
=
"
Email address of the host.
"
,
max_length
=
254
),
),
migrations
.
AlterField
(
model_name
=
"
host
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if host is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
host
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Display name of the host.
"
,
max_length
=
128
),
),
migrations
.
AlterField
(
model_name
=
"
host
"
,
name
=
"
owners
"
,
field
=
models
.
ManyToManyField
(
blank
=
True
,
help_text
=
"
User ID(s) identifying this host.
"
,
related_name
=
"
hosts
"
,
to
=
settings
.
AUTH_USER_MODEL
,
),
),
migrations
.
AlterField
(
model_name
=
"
image
"
,
name
=
"
alt_text
"
,
field
=
models
.
TextField
(
blank
=
True
,
default
=
""
,
help_text
=
"
Alternate text for the image.
"
),
),
migrations
.
AlterField
(
model_name
=
"
image
"
,
name
=
"
credits
"
,
field
=
models
.
TextField
(
blank
=
True
,
default
=
""
,
help_text
=
"
Credits of the image
"
),
),
migrations
.
AlterField
(
model_name
=
"
image
"
,
name
=
"
image
"
,
field
=
versatileimagefield
.
fields
.
VersatileImageField
(
blank
=
True
,
height_field
=
"
height
"
,
help_text
=
"
The URI of the image.
"
,
null
=
True
,
upload_to
=
"
images
"
,
width_field
=
"
width
"
,
),
),
migrations
.
AlterField
(
model_name
=
"
image
"
,
name
=
"
is_use_explicitly_granted_by_author
"
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
"
True if use is explicitly granted by author.
"
),
),
migrations
.
AlterField
(
model_name
=
"
language
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if language is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
language
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of the language.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
license
"
,
name
=
"
needs_author
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if license needs an author.
"
),
),
migrations
.
AlterField
(
model_name
=
"
license
"
,
name
=
"
requires_express_permission_for_publication
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if express permission for publication required.
"
),
),
migrations
.
AlterField
(
model_name
=
"
license
"
,
name
=
"
url
"
,
field
=
models
.
URLField
(
blank
=
True
,
default
=
""
,
help_text
=
"
URL of the licence.
"
),
),
migrations
.
AlterField
(
model_name
=
"
linktype
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if link type is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
musicfocus
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if music focus is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
musicfocus
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of the music focus.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
musicfocus
"
,
name
=
"
slug
"
,
field
=
models
.
SlugField
(
help_text
=
"
Slug of the music focus.
"
,
max_length
=
32
,
unique
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
note
"
,
name
=
"
cba_id
"
,
field
=
models
.
IntegerField
(
blank
=
True
,
help_text
=
"
CBA entry ID.
"
,
null
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
note
"
,
name
=
"
content
"
,
field
=
models
.
TextField
(
help_text
=
"
Textual content of the note.
"
),
),
migrations
.
AlterField
(
model_name
=
"
note
"
,
name
=
"
contributors
"
,
field
=
models
.
ManyToManyField
(
help_text
=
"
`Host` IDs contributing to this note.
"
,
related_name
=
"
notes
"
,
to
=
"
program.host
"
,
),
),
migrations
.
AlterField
(
model_name
=
"
note
"
,
name
=
"
summary
"
,
field
=
models
.
TextField
(
blank
=
True
,
help_text
=
"
Summary of the Note.
"
),
),
migrations
.
AlterField
(
model_name
=
"
note
"
,
name
=
"
title
"
,
field
=
models
.
CharField
(
blank
=
True
,
default
=
""
,
help_text
=
"
Title of the note.
"
,
max_length
=
128
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
description
"
,
field
=
models
.
TextField
(
blank
=
True
,
help_text
=
"
Description of this show.
"
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
email
"
,
field
=
models
.
EmailField
(
blank
=
True
,
help_text
=
"
Email address of this show.
"
,
max_length
=
254
,
null
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
internal_note
"
,
field
=
models
.
TextField
(
blank
=
True
,
help_text
=
"
Internal note for this show.
"
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if this show is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
is_public
"
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
"
True if this show is public.
"
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of this Show.
"
,
max_length
=
255
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
short_description
"
,
field
=
models
.
TextField
(
help_text
=
"
Short description of this show.
"
),
),
migrations
.
AlterField
(
model_name
=
"
show
"
,
name
=
"
slug
"
,
field
=
models
.
SlugField
(
blank
=
True
,
help_text
=
"
Slug of this show.
"
,
max_length
=
255
,
unique
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
timeslot
"
,
name
=
"
memo
"
,
field
=
models
.
TextField
(
blank
=
True
,
help_text
=
"
Memo for this timeslot.
"
),
),
migrations
.
AlterField
(
model_name
=
"
timeslot
"
,
name
=
"
playlist_id
"
,
field
=
models
.
IntegerField
(
help_text
=
"
`Playlist` ID of this timeslot.
"
,
null
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
topic
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if topic is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
topic
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of the topic.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
topic
"
,
name
=
"
slug
"
,
field
=
models
.
SlugField
(
help_text
=
"
Slug of the topic.
"
,
max_length
=
32
,
unique
=
True
),
),
migrations
.
AlterField
(
model_name
=
"
type
"
,
name
=
"
is_active
"
,
field
=
models
.
BooleanField
(
default
=
True
,
help_text
=
"
True if type is active.
"
),
),
migrations
.
AlterField
(
model_name
=
"
type
"
,
name
=
"
name
"
,
field
=
models
.
CharField
(
help_text
=
"
Name of the type.
"
,
max_length
=
32
),
),
migrations
.
AlterField
(
model_name
=
"
type
"
,
name
=
"
slug
"
,
field
=
models
.
SlugField
(
help_text
=
"
Slug of the type.
"
,
max_length
=
32
,
unique
=
True
),
),
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment