mirror of
https://github.com/Damillora/Altessimo
synced 2024-10-31 21:17:32 +00:00
24 lines
539 B
Python
24 lines
539 B
Python
|
# Generated by Django 3.1.4 on 2020-12-15 21:07
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('artists', '0002_artist_category'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='artist',
|
||
|
name='about_composer',
|
||
|
field=models.TextField(blank=True),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='artist',
|
||
|
name='about_music',
|
||
|
field=models.TextField(blank=True),
|
||
|
),
|
||
|
]
|