dev #2
25
backlogger/migrations/0006_item_category_unending.py
Normal file
25
backlogger/migrations/0006_item_category_unending.py
Normal file
@@ -0,0 +1,25 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('backlogger', '0005_item_status'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='item',
|
||||
name='category',
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
('games', 'Games'),
|
||||
('books', 'Books'),
|
||||
('films', 'Films'),
|
||||
('unending', 'Unending'),
|
||||
('other', 'Other'),
|
||||
],
|
||||
max_length=10,
|
||||
),
|
||||
),
|
||||
]
|
||||
24
backlogger/migrations/0008_fix_category_choices.py
Normal file
24
backlogger/migrations/0008_fix_category_choices.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('backlogger', '0007_merge'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='item',
|
||||
name='category',
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
('games', 'Games'),
|
||||
('books', 'Books'),
|
||||
('films', 'Films'),
|
||||
('other', 'Other'),
|
||||
],
|
||||
max_length=10,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user