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
Copy file name to clipboardExpand all lines: ansible_base/rbac/migrations/0004_remote_permissions_additions.py
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -159,4 +159,20 @@ class Migration(migrations.Migration):
159
159
model_name='roleevaluationuuid',
160
160
name='dab_rbac_ro_role_id_4fe905_idx',
161
161
),
162
+
# Fields unique to DAB RBAC and not generally shared with ContentType or Permission
163
+
migrations.AddField(
164
+
model_name='dabcontenttype',
165
+
name='api_slug',
166
+
field=models.CharField(default='', help_text='String to use for references to this type from other models in the API.', max_length=201),
167
+
),
168
+
migrations.AddField(
169
+
model_name='dabcontenttype',
170
+
name='pk_field_type',
171
+
field=models.CharField(default='integer', help_text='Database field type of the primary key field of the model, relevant for interal logic tracking permissions.', max_length=100),
172
+
),
173
+
migrations.AddField(
174
+
model_name='dabpermission',
175
+
name='api_slug',
176
+
field=models.CharField(default='', help_text='String to use for references to this type from other models in the API.', max_length=201),
0 commit comments