Commit 973839e 1 parent d33b107 commit 973839e Copy full SHA for 973839e
File tree 1 file changed +37
-0
lines changed
apps/moderatorfeedback/migrations
1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Generated by Django 3.2.19 on 2023-06-19 09:17
2
+
3
+ import ckeditor .fields
4
+ from django .conf import settings
5
+ from django .db import migrations , models
6
+ import django .db .models .deletion
7
+ import django .utils .timezone
8
+
9
+
10
+ class Migration (migrations .Migration ):
11
+
12
+ dependencies = [
13
+ ('a4comments' , '0013_set_project' ),
14
+ migrations .swappable_dependency (settings .AUTH_USER_MODEL ),
15
+ ('a4_candy_moderatorfeedback' , '0006_verbose_name_created_modified' ),
16
+ ]
17
+
18
+ operations = [
19
+ migrations .RenameModel (
20
+ "ModeratorCommentStatement" ,
21
+ "ModeratorCommentFeedback" ,
22
+ ),
23
+ migrations .RenameField (
24
+ model_name = "moderatorcommentfeedback" ,
25
+ old_name = "statement" ,
26
+ new_name = "feedback_text" ,
27
+ ),
28
+ migrations .AlterField (
29
+ model_name = "moderatorcommentfeedback" ,
30
+ name = "comment" ,
31
+ field = models .OneToOneField (
32
+ on_delete = django .db .models .deletion .CASCADE ,
33
+ related_name = "moderator_feedback" ,
34
+ to = "a4comments.comment" ,
35
+ ),
36
+ ),
37
+ ]
You can’t perform that action at this time.
0 commit comments