-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
breathecode/registry/migrations/0038_auto_20231123_1611.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Generated by Django 3.2.23 on 2023-11-23 16:11 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('registry', '0037_auto_20231110_1847'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='asset', | ||
name='status', | ||
field=models.CharField(choices=[('NOT_STARTED', 'Not Started'), ('PLANNING', 'Planning'), | ||
('WRITING', 'Writing'), ('DRAFT', 'Draft'), | ||
('OPTIMIZED', 'Optimized'), ('PUBLISHED', 'Published')], | ||
db_index=True, | ||
default='NOT_STARTED', | ||
help_text="It won't be shown on the website until the status is published", | ||
max_length=20), | ||
), | ||
migrations.AlterField( | ||
model_name='asset', | ||
name='visibility', | ||
field=models.CharField( | ||
choices=[('PUBLIC', 'Public'), ('UNLISTED', 'Unlisted'), ('PRIVATE', 'Private')], | ||
db_index=True, | ||
default='PUBLIC', | ||
help_text= | ||
"This is an internal property. It won't be shown internally to other academies unless is public", | ||
max_length=20), | ||
), | ||
] |