-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(recap): Updated ProcessingQueue migrations.
- Fixed pacer_case_id typo in migration. - Increased pacer_doc_id length to 64 - Added new field acms_document_guid - Added new UploadType
- Loading branch information
1 parent
1120791
commit 37d5c1a
Showing
4 changed files
with
73 additions
and
12 deletions.
There are no files selected for viewing
10 changes: 0 additions & 10 deletions
10
cl/recap/migrations/0013_alter_processingqueue_upload_type_noop.sql
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
BEGIN; | ||
-- | ||
-- Add field acms_document_guid to processingqueue | ||
-- | ||
ALTER TABLE "recap_processingqueue" ADD COLUMN "acms_document_guid" varchar(64) DEFAULT '' NOT NULL; | ||
ALTER TABLE "recap_processingqueue" ALTER COLUMN "acms_document_guid" DROP DEFAULT; | ||
-- | ||
-- Alter field upload_type on pacerhtmlfiles | ||
-- | ||
-- (no-op) | ||
-- | ||
-- Alter field pacer_case_id on processingqueue | ||
-- | ||
-- (no-op) | ||
-- | ||
-- Alter field pacer_doc_id on processingqueue | ||
-- | ||
ALTER TABLE "recap_processingqueue" ALTER COLUMN "pacer_doc_id" TYPE varchar(64); | ||
-- | ||
-- Alter field upload_type on processingqueue | ||
-- | ||
-- (no-op) | ||
-- | ||
-- Create index recap_proce_acms_do_2e7cae_idx on field(s) acms_document_guid of model processingqueue | ||
-- | ||
CREATE INDEX "recap_proce_acms_do_2e7cae_idx" ON "recap_processingqueue" ("acms_document_guid"); | ||
COMMIT; |
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