Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
allow up to 40 chars in proposal name
Browse files Browse the repository at this point in the history
  • Loading branch information
nmarley committed Jan 10, 2017
1 parent 20a66de commit 299035e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class Meta:

class Proposal(GovernanceClass, BaseModel):
governance_object = ForeignKeyField(GovernanceObject, related_name='proposals', on_delete='CASCADE', on_update='CASCADE')
name = CharField(default='', max_length=20)
name = CharField(default='', max_length=40)
url = CharField(default='')
start_epoch = IntegerField()
end_epoch = IntegerField()
Expand Down

0 comments on commit 299035e

Please sign in to comment.