Make migration

This commit is contained in:
David Doblas Jiménez 2022-01-04 15:05:35 +01:00
parent e6b3b0f715
commit cceb2d82fd
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.0 on 2022-01-04 13:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('projects', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='project',
name='image',
field=models.FilePathField(path='/projects/img'),
),
]