File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Generated by Django 2.1.2 on 2020-01-23 21:07
2
+
3
+ from django .db import migrations , models
4
+
5
+
6
+ class Migration (migrations .Migration ):
7
+
8
+ dependencies = [
9
+ ('user_activities' , '0004_auto_20191121_1151' ),
10
+ ]
11
+
12
+ operations = [
13
+ migrations .AlterField (
14
+ model_name = 'comment' ,
15
+ name = 'text' ,
16
+ field = models .TextField (blank = True ),
17
+ ),
18
+ migrations .AlterField (
19
+ model_name = 'review' ,
20
+ name = 'text' ,
21
+ field = models .TextField (blank = True ),
22
+ ),
23
+ ]
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class UserActivity(TimeStampedModel):
20
20
settings .AUTH_USER_MODEL ,
21
21
on_delete = models .CASCADE ,
22
22
)
23
- text = models .CharField ( max_length = 500 , blank = True )
23
+ text = models .TextField ( blank = True )
24
24
active = models .BooleanField (default = True )
25
25
activities = GenericRelation ('user_activities.Activity' )
26
26
tags = models .ManyToManyField ('user_activities.Tag' , blank = True )
You can’t perform that action at this time.
0 commit comments