-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the category field in the Artist model
- Loading branch information
1 parent
44659dc
commit 1c72e0b
Showing
5 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
backend/artistsmgmt/__pycache__/serializers.cpython-310.pyc
Binary file not shown.
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,18 @@ | ||
# Generated by Django 4.2.7 on 2023-12-07 03:27 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('artistsmgmt', '0004_artist_photo_artist_profession'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='artist', | ||
name='category', | ||
field=models.CharField(choices=[('', 'Select Category'), ('visual artists', 'Visual Artists'), ('performing artists', 'Performing Artists'), ('literary artists', 'Literary Artists'), ('fashion artists', 'Fashion Artists')], default='', max_length=100), | ||
), | ||
] |
Binary file added
BIN
+827 Bytes
backend/artistsmgmt/migrations/__pycache__/0005_artist_category.cpython-310.pyc
Binary file not shown.
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