@@ -19,7 +19,7 @@ class Migration(migrations.Migration):
1919 fields = [
2020 ('id' , models .AutoField (verbose_name = 'ID' , serialize = False , auto_created = True , primary_key = True )),
2121 ('name' , models .CharField (unique = True , max_length = 100 )),
22- ('status' , models .IntegerField (default = 1 , choices = [(1 , b 'Future' ), (2 , b 'Open' ), (3 , b 'In Progress' ), (4 , b 'Closed' )])),
22+ ('status' , models .IntegerField (default = 1 , choices = [(1 , 'Future' ), (2 , 'Open' ), (3 , 'In Progress' ), (4 , 'Closed' )])),
2323 ('startdate' , models .DateField (null = True , blank = True )),
2424 ('enddate' , models .DateField (null = True , blank = True )),
2525 ],
@@ -92,9 +92,9 @@ class Migration(migrations.Migration):
9292 name = 'Patch' ,
9393 fields = [
9494 ('id' , models .AutoField (verbose_name = 'ID' , serialize = False , auto_created = True , primary_key = True )),
95- ('name' , models .CharField (max_length = 500 , verbose_name = b 'Description' )),
96- ('wikilink' , models .URLField (default = b '' , null = False , blank = True )),
97- ('gitlink' , models .URLField (default = b '' , null = False , blank = True )),
95+ ('name' , models .CharField (max_length = 500 , verbose_name = 'Description' )),
96+ ('wikilink' , models .URLField (default = '' , null = False , blank = True )),
97+ ('gitlink' , models .URLField (default = '' , null = False , blank = True )),
9898 ('created' , models .DateTimeField (auto_now_add = True )),
9999 ('modified' , models .DateTimeField ()),
100100 ('lastmail' , models .DateTimeField (null = True , blank = True )),
@@ -124,7 +124,7 @@ class Migration(migrations.Migration):
124124 ('id' , models .AutoField (verbose_name = 'ID' , serialize = False , auto_created = True , primary_key = True )),
125125 ('enterdate' , models .DateTimeField ()),
126126 ('leavedate' , models .DateTimeField (null = True , blank = True )),
127- ('status' , models .IntegerField (default = 1 , choices = [(1 , b 'Needs review' ), (2 , b 'Waiting on Author' ), (3 , b 'Ready for Committer' ), (4 , b 'Committed' ), (5 , b 'Moved to next CF' ), (6 , b 'Rejected' ), (7 , b 'Returned with feedback' )])),
127+ ('status' , models .IntegerField (default = 1 , choices = [(1 , 'Needs review' ), (2 , 'Waiting on Author' ), (3 , 'Ready for Committer' ), (4 , 'Committed' ), (5 , 'Moved to next CF' ), (6 , 'Rejected' ), (7 , 'Returned with feedback' )])),
128128 ('commitfest' , models .ForeignKey (to = 'commitfest.CommitFest' )),
129129 ('patch' , models .ForeignKey (to = 'commitfest.Patch' )),
130130 ],
0 commit comments