Skip to content

Commit

Permalink
db: move ExecutorExtensionPort column before ExecutorExtensionProxyPort.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashimpens committed Feb 17, 2025
1 parent ac17b42 commit 363959c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/src/main/resources/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6619,4 +6619,7 @@ ALTER TABLE robotexecutor RENAME COLUMN host_user TO HostUser;
ALTER TABLE robotexecutor RENAME COLUMN host_password TO HostPassword;

-- 1890
ALTER TABLE robotexecutor ADD COLUMN ExecutorExtensionPort int DEFAULT NULL AFTER ExecutorBrowserProxyPort;
ALTER TABLE robotexecutor ADD COLUMN ExecutorExtensionPort int DEFAULT NULL AFTER ExecutorBrowserProxyPort;

-- 1891
ALTER TABLE robotexecutor MODIFY COLUMN ExecutorExtensionPort int DEFAULT NULL AFTER HostPassword;

0 comments on commit 363959c

Please sign in to comment.