mirror of
https://github.com/Damillora/Altessimo
synced 2024-10-31 21:17:32 +00:00
24 lines
676 B
Python
24 lines
676 B
Python
|
# Generated by Django 3.1.4 on 2020-12-15 20:42
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Artist',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(max_length=255)),
|
||
|
('romanized_name', models.CharField(max_length=255)),
|
||
|
('aliases', models.ManyToManyField(blank=True, related_name='_artist_aliases_+', to='artists.Artist')),
|
||
|
],
|
||
|
),
|
||
|
]
|