1
- # Generated by Django 3.2.25 on 2024-07-11 10:16
1
+ # Generated by Django 3.2.25 on 2024-07-12 15:33
2
2
3
3
from django .db import migrations , models
4
4
import django .db .models .deletion
@@ -15,7 +15,7 @@ class Migration(migrations.Migration):
15
15
migrations .CreateModel (
16
16
name = 'Contributor' ,
17
17
fields = [
18
- ('id' , models .IntegerField (primary_key = True , serialize = False )),
18
+ ('id' , models .IntegerField (help_text = "The contributor's GitHub user-ID." , primary_key = True , serialize = False )),
19
19
('email' , models .EmailField (max_length = 254 , verbose_name = 'email' )),
20
20
('name' , models .TextField (verbose_name = 'name' )),
21
21
('location' , models .TextField (verbose_name = 'location' )),
@@ -31,8 +31,8 @@ class Migration(migrations.Migration):
31
31
name = 'Repository' ,
32
32
fields = [
33
33
('id' , models .AutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
34
- ('gh_id' , models .IntegerField (verbose_name = 'GitHub ID' )),
35
- ('points' , models .IntegerField (default = 0 , verbose_name = 'points' )),
34
+ ('gh_id' , models .IntegerField (help_text = 'Github ID of the repo a contributor has contributed to.' , verbose_name = 'GitHub ID' )),
35
+ ('points' , models .IntegerField (default = 0 , help_text = 'Story points the contributor closed for this repository.' , verbose_name = 'points' )),
36
36
('contributor' , models .ForeignKey (on_delete = django .db .models .deletion .CASCADE , to = 'api.contributor' )),
37
37
],
38
38
options = {
@@ -45,7 +45,7 @@ class Migration(migrations.Migration):
45
45
name = 'AgreementSignature' ,
46
46
fields = [
47
47
('id' , models .AutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
48
- ('agreement_id' , models .CharField (max_length = 40 , verbose_name = 'agreement id' )),
48
+ ('agreement_id' , models .CharField (help_text = 'Commit ID of the contribution agreement in workspace.' , max_length = 40 , verbose_name = 'agreement id' )),
49
49
('signed_at' , models .DateTimeField (verbose_name = 'signed at' )),
50
50
('contributor' , models .ForeignKey (on_delete = django .db .models .deletion .CASCADE , to = 'api.contributor' )),
51
51
],
0 commit comments