Skip to content

Commit

Permalink
Clean up rebased files
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Mar 8, 2022
1 parent 2ee345c commit ba4b1aa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions api/db-migrations/000005_ensembler_type_config.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ ALTER TABLE ensemblers ADD docker_config jsonb;
UPDATE ensemblers
SET type = 'docker',
docker_config = (SELECT json_build_object(
'image', image,
'resource_request', resource_request,
'endpoint', endpoint,
'timeout', timeout,
'port', port,
'env', env,
'service_account', service_account
))
'image', image,
'resource_request', resource_request,
'endpoint', endpoint,
'timeout', timeout,
'port', port,
'env', env,
'service_account', service_account
))
WHERE id IS NOT NULL;

-- Drop columns that are no longer used in the new schema
Expand Down

0 comments on commit ba4b1aa

Please sign in to comment.