-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This removes: * the fits service and its package dependencies from the Compose environment * the FITS_v0.0 client script from the MCPClient and updates the MCPServer workflow to use the identifyFileFormat_v0.0 and characterizeFile_v0.0 scripts for manually normalized preservation files * the FPR model instances (FPTool, FPCommand and FPRule) related to FITS with a database data migration in the fpr application of the Dashboard
- Loading branch information
1 parent
f991796
commit 0212db1
Showing
10 changed files
with
63 additions
and
189 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
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
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from django.db import migrations | ||
|
||
|
||
def data_migration(apps, schema_editor): | ||
FPTool = apps.get_model("fpr", "FPTool") | ||
FPTool.objects.filter(description="FITS").delete() | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [("fpr", "0043_update_default_thumbnail_command")] | ||
|
||
operations = [migrations.RunPython(data_migration, migrations.RunPython.noop)] |