@cumulus/db 18.5.1 → 18.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,10 +6,6 @@ const up = async (knex) => {
|
|
|
6
6
|
await knex.raw('ALTER TABLE executions ALTER COLUMN cumulus_id TYPE BIGINT, ALTER COLUMN parent_cumulus_id TYPE BIGINT');
|
|
7
7
|
await knex.raw('ALTER TABLE granules_executions ALTER COLUMN granule_cumulus_id TYPE BIGINT, ALTER COLUMN execution_cumulus_id TYPE BIGINT');
|
|
8
8
|
await knex.raw('ALTER TABLE pdrs ALTER COLUMN execution_cumulus_id TYPE BIGINT');
|
|
9
|
-
await knex.raw('VACUUM (ANALYZE, VERBOSE) executions');
|
|
10
|
-
await knex.raw('VACUUM (ANALYZE, VERBOSE) files');
|
|
11
|
-
await knex.raw('VACUUM (ANALYZE, VERBOSE) granules_executions');
|
|
12
|
-
await knex.raw('VACUUM (ANALYZE, VERBOSE) pdrs');
|
|
13
9
|
};
|
|
14
10
|
exports.up = up;
|
|
15
11
|
const down = async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/db",
|
|
3
|
-
"version": "18.5.
|
|
3
|
+
"version": "18.5.2",
|
|
4
4
|
"description": "Utilities for working with the Cumulus DB",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@aws-sdk/client-secrets-manager": "^3.621.0",
|
|
36
|
-
"@cumulus/aws-client": "18.5.
|
|
37
|
-
"@cumulus/common": "18.5.
|
|
38
|
-
"@cumulus/errors": "18.5.
|
|
39
|
-
"@cumulus/logger": "18.5.
|
|
40
|
-
"@cumulus/message": "18.5.
|
|
41
|
-
"@cumulus/types": "18.5.
|
|
36
|
+
"@cumulus/aws-client": "18.5.2",
|
|
37
|
+
"@cumulus/common": "18.5.2",
|
|
38
|
+
"@cumulus/errors": "18.5.2",
|
|
39
|
+
"@cumulus/logger": "18.5.2",
|
|
40
|
+
"@cumulus/message": "18.5.2",
|
|
41
|
+
"@cumulus/types": "18.5.2",
|
|
42
42
|
"crypto-random-string": "^3.2.0",
|
|
43
43
|
"is-valid-hostname": "1.0.2",
|
|
44
44
|
"knex": "2.4.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/uuid": "^8.0.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "615196ec606ceb95334198cabbfb215d2fe71d66"
|
|
54
54
|
}
|