Skip to content

Commit

Permalink
Merge pull request #2172 from shreddedbacon/active-standby-routes
Browse files Browse the repository at this point in the history
Fix column type for active/standby routes
  • Loading branch information
Schnitzel authored Sep 8, 2020
2 parents e762600 + 605a198 commit 409e89f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/api-db/docker-entrypoint-initdb.d/01-migrations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ CREATE OR REPLACE PROCEDURE
AND column_name = 'production_routes'
) THEN
ALTER TABLE `project`
ADD `production_routes` varchar(100);
ADD `production_routes` text;
END IF;
END;
$$
Expand Down Expand Up @@ -217,7 +217,7 @@ CREATE OR REPLACE PROCEDURE
AND column_name = 'standby_routes'
) THEN
ALTER TABLE `project`
ADD `standby_routes` varchar(100);
ADD `standby_routes` text;
END IF;
END;
$$
Expand Down

0 comments on commit 409e89f

Please sign in to comment.