-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration for removing decrypted client secret in sap configuration (#…
…2230) * feat: added migration file for removing char field decrypted_secret
- Loading branch information
1 parent
d255e40
commit 336dee5
Showing
3 changed files
with
22 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Your project description goes here. | ||
""" | ||
|
||
__version__ = "4.25.1" | ||
__version__ = "4.25.2" |
17 changes: 17 additions & 0 deletions
17
...grations/0020_remove_sapsuccessfactorsenterprisecustomerconfiguration_decrypted_secret.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,17 @@ | ||
# Generated by Django 3.2.23 on 2024-09-04 14:20 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sap_success_factors', '0019_auto_20240902_1418'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='sapsuccessfactorsenterprisecustomerconfiguration', | ||
name='decrypted_secret', | ||
), | ||
] |