1
- # Generated by Django 3.2.25 on 2024-07-10 14:59
1
+ # Generated by Django 3.2.25 on 2024-07-11 10:16
2
2
3
3
from django .db import migrations , models
4
4
import django .db .models .deletion
@@ -16,11 +16,11 @@ class Migration(migrations.Migration):
16
16
name = 'Contributor' ,
17
17
fields = [
18
18
('id' , models .IntegerField (primary_key = True , serialize = False )),
19
- ('email' , models .EmailField (max_length = 254 )),
20
- ('name' , models .TextField ()),
21
- ('location' , models .TextField ()),
22
- ('html_url' , models .TextField ()),
23
- ('avatar_url' , models .TextField ()),
19
+ ('email' , models .EmailField (max_length = 254 , verbose_name = 'email' )),
20
+ ('name' , models .TextField (verbose_name = 'name' )),
21
+ ('location' , models .TextField (verbose_name = 'location' )),
22
+ ('html_url' , models .TextField (verbose_name = 'html url' )),
23
+ ('avatar_url' , models .TextField (verbose_name = 'avatar url' )),
24
24
],
25
25
options = {
26
26
'verbose_name' : 'contributor' ,
@@ -32,7 +32,7 @@ class Migration(migrations.Migration):
32
32
fields = [
33
33
('id' , models .AutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
34
34
('gh_id' , models .IntegerField (verbose_name = 'GitHub ID' )),
35
- ('points' , models .IntegerField (default = 0 )),
35
+ ('points' , models .IntegerField (default = 0 , verbose_name = 'points' )),
36
36
('contributor' , models .ForeignKey (on_delete = django .db .models .deletion .CASCADE , to = 'api.contributor' )),
37
37
],
38
38
options = {
@@ -45,13 +45,13 @@ 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 )),
49
- ('signed_at' , models .DateTimeField ()),
48
+ ('agreement_id' , models .CharField (max_length = 40 , verbose_name = 'agreement id' )),
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
],
52
52
options = {
53
- 'verbose_name' : 'agreement_signature ' ,
54
- 'verbose_name_plural' : 'agreement_signatures ' ,
53
+ 'verbose_name' : 'agreement signature ' ,
54
+ 'verbose_name_plural' : 'agreement signatures ' ,
55
55
'unique_together' : {('contributor' , 'agreement_id' )},
56
56
},
57
57
),
0 commit comments