Skip to content

Commit 39699a9

Browse files
authored
Merge pull request #137 from golony6449/feature/golony/session
SHORT 세션 시간 수정
2 parents 9bceb30 + cc6af12 commit 39699a9

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Generated by Django 4.1.5 on 2023-07-24 15:31
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("session", "0003_session_host_name_alter_session_introduction"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="session",
15+
name="duration",
16+
field=models.CharField(
17+
choices=[("SHORT", "20min"), ("LONG", "40min")], max_length=15
18+
),
19+
),
20+
]

session/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Session(models.Model):
9999
duration = models.CharField(
100100
max_length=15,
101101
choices=(
102-
("SHORT", "25min"),
102+
("SHORT", "20min"),
103103
("LONG", "40min"),
104104
),
105105
)

0 commit comments

Comments
 (0)