-
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rename modify_sharing and add migration
- Loading branch information
Showing
3 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
kobo/apps/audit_log/migrations/0013_alter_auditlog_action.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Generated by Django 4.2.15 on 2024-12-03 16:51 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('audit_log', '0012_alter_auditlog_action'), | ||
] | ||
|
||
operations = [ | ||
migrations.RunSQL( | ||
sql="UPDATE audit_log_auditlog SET action = 'modify-sharing' " | ||
"WHERE action = 'modify_sharing';", | ||
reverse_sql=migrations.RunSQL.noop, | ||
), | ||
migrations.AlterField( | ||
model_name='auditlog', | ||
name='action', | ||
field=models.CharField( | ||
choices=[ | ||
('add-media', 'Add Media'), | ||
('allow-anonymous-submissions', 'Allow Anonymous Submissions'), | ||
('archive', 'Archive'), | ||
('auth', 'Auth'), | ||
('clone-permissions', 'Clone Permissions'), | ||
('connect-project', 'Connect Project'), | ||
('create', 'Create'), | ||
('delete', 'Delete'), | ||
('delete-media', 'Delete Media'), | ||
('delete-service', 'Delete Service'), | ||
('deploy', 'Deploy'), | ||
('disable-sharing', 'Disable Sharing'), | ||
( | ||
'disallow-anonymous-submissions', | ||
'Disallow Anonymous Submissions', | ||
), | ||
('disconnect-project', 'Disconnect Project'), | ||
('enable-sharing', 'Enable Sharing'), | ||
('export', 'Export'), | ||
('in-trash', 'In Trash'), | ||
('modify-imported-fields', 'Modify Imported Fields'), | ||
('modify-service', 'Modify Service'), | ||
('modify-sharing', 'Modify Sharing'), | ||
('modify-user-permissions', 'Modify User Permissions'), | ||
('put-back', 'Put Back'), | ||
('redeploy', 'Redeploy'), | ||
('register-service', 'Register Service'), | ||
('remove', 'Remove'), | ||
('replace-form', 'Replace Form'), | ||
('share-form-publicly', 'Share Form Publicly'), | ||
('share-data-publicly', 'Share Data Publicly'), | ||
('unarchive', 'Unarchive'), | ||
('unshare-form-publicly', 'Unshare Form Publicly'), | ||
('unshare-data-publicly', 'Unshare Data Publicly'), | ||
('update', 'Update'), | ||
('update-content', 'Update Content'), | ||
('update-name', 'Update Name'), | ||
('update-settings', 'Update Settings'), | ||
('update-qa', 'Update Qa'), | ||
], | ||
db_index=True, | ||
default='delete', | ||
max_length=30, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters