Skip to content

Commit 8d91c0f

Browse files
committed
migrations 파일 추가
1 parent 88b9f20 commit 8d91c0f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 4.1.5 on 2023-07-16 13:06
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("session", "0002_remove_session_accepted"),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name="session",
15+
name="host_name",
16+
field=models.CharField(blank=True, max_length=50, null=True),
17+
),
18+
migrations.AlterField(
19+
model_name="session",
20+
name="introduction",
21+
field=models.TextField(
22+
blank=True,
23+
help_text="발표 소개 페이지에 들어가는 내용입니다.",
24+
max_length=3000,
25+
null=True,
26+
),
27+
),
28+
]

0 commit comments

Comments
 (0)