Skip to content

Commit

Permalink
postgres support | increase length limit for urlview
Browse files Browse the repository at this point in the history
  • Loading branch information
tkorchug committed Nov 8, 2022
1 parent 2eb767f commit 46f4dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/common/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ class AllRequests(models.Model):
referrer = models.CharField(max_length=4000, db_column='referrer')
useragent = models.CharField(max_length=250, db_column='useragent')
is_rejected = models.IntegerField(db_column='is_rejected')
urlview = models.CharField(max_length=40, db_column='urlview')
urlview = models.CharField(max_length=300, db_column='urlview')
load = models.FloatField(db_column='load')
mem = models.FloatField(db_column='mem')
dbactivesess = models.IntegerField(db_column='dbactivesess')
Expand Down

0 comments on commit 46f4dd8

Please sign in to comment.