Skip to content

Commit

Permalink
fix: 프로필 이미지 경로 수정 마이그레이션
Browse files Browse the repository at this point in the history
  • Loading branch information
ybkang1108 committed Aug 10, 2024
1 parent 4bacbfb commit b640cc9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions accounts/migrations/0008_alter_user_profile_img.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.14 on 2024-08-10 08:07

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("accounts", "0007_alter_user_reliability"),
]

operations = [
migrations.AlterField(
model_name="user",
name="profile_img",
field=models.ImageField(
default="default_profile_img.jpg", upload_to="profile_img/"
),
),
]

0 comments on commit b640cc9

Please sign in to comment.