Make migration
This commit is contained in:
18
projects/migrations/0002_alter_project_image.py
Normal file
18
projects/migrations/0002_alter_project_image.py
Normal 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'),
|
||||||
|
),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user