You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Specify explicit migrations in order for Grant (#686)
* Order grant migrations to work against r27 (#689)
* Correct metrics view for data access grants (#693)
* Recreate client_uri field to work with db (#692)
* Recreate client_uri field to work with db
* Remove Removal of client_uri migration
* Make application info fields null-able
* Document depreciation of client_uri (#694)
* Trigger app_authorized signal on bene interaction (#695)
* Trigger app_authorized signal on bene interaction
* Correct migration order from r29 patch
field=models.URLField(blank=True, default='', help_text='This is typically a home/download website for the application. For example, https://www.example.org or http://www.example.org .', max_length=512, null=True, verbose_name='Website URI'),
20
+
),
21
+
migrations.AlterField(
22
+
model_name='application',
23
+
name='description',
24
+
field=models.TextField(blank=True, default='', help_text='This is plain-text up to 1000 characters in length.', max_length=1000, null=True, validators=[apps.dot_ext.validators.validate_notags], verbose_name='Application Description'),
25
+
),
26
+
migrations.AlterField(
27
+
model_name='application',
28
+
name='website_uri',
29
+
field=models.URLField(blank=True, default='', help_text='This is typically a home/download website for the application. For example, https://www.example.org or http://www.example.org .', max_length=512, null=True, verbose_name='Website URI'),
0 commit comments