17 lines
481 B
Python
17 lines
481 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cards', '0004_convert_stats_to_units'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='dinosaur',
|
|
name='background',
|
|
field=models.ForeignKey(blank=True, help_text='Optional per-card background image', null=True, on_delete=models.SET_NULL, related_name='dinosaurs', to='cards.backgroundimage'),
|
|
),
|
|
]
|