-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Postgres schema sync with oracle: harvester_workers.minramcount
- Loading branch information
1 parent
af85df1
commit 7084168
Showing
3 changed files
with
12 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- patch to be used to upgrade from version 0.0.17 | ||
ALTER TABLE doma_panda.harvester_workers ADD COLUMN minramcount integer; | ||
COMMENT ON COLUMN harvester_workers.minramcount IS E'Worker memory requirements'; | ||
|
||
-- Update versions | ||
UPDATE pandadb_version SET major=0, minor=0, patch=18 where component='JEDI'; | ||
UPDATE pandadb_version SET major=0, minor=0, patch=18 where component='SERVER'; | ||
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.0.17 | ||
0.0.18 |