Skip to content

Commit

Permalink
is_best 및 평균 평점 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Gomnonix committed Aug 22, 2024
1 parent ce988fd commit a36277a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions customk/reviews/migrations/0005_alter_review_class_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 5.1 on 2024-08-22 05:43

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('classes', '0008_rename_course_classdate_class_id_and_more'),
('reviews', '0004_rename_user_id_review_user'),
]

operations = [
migrations.AlterField(
model_name='review',
name='class_id',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='reviews', to='classes.class'),
),
]

0 comments on commit a36277a

Please sign in to comment.