Skip to content

Commit

Permalink
blank 옵션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Gomnonix committed Sep 2, 2024
1 parent f68d9be commit a171f61
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@


class Migration(migrations.Migration):

dependencies = [
('classes', '0018_remove_classimages_description_image_urls_and_more'),
("classes", "0018_remove_classimages_description_image_urls_and_more"),
]

operations = [
migrations.AlterField(
model_name='classimages',
name='detail_image_url',
model_name="classimages",
name="detail_image_url",
field=models.CharField(blank=True, max_length=255),
),
migrations.AlterField(
model_name='classimages',
name='thumbnail_image_url',
model_name="classimages",
name="thumbnail_image_url",
field=models.CharField(blank=True, max_length=255),
),
]

0 comments on commit a171f61

Please sign in to comment.