mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
19 lines
417 B
Python
19 lines
417 B
Python
# Generated by Django 4.0.6 on 2022-07-12 12:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('consist', '0002_alter_consist_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='consist',
|
|
name='image',
|
|
field=models.ImageField(blank=True, null=True, upload_to='images/'),
|
|
),
|
|
]
|