From d4f4bb0295a714d43be56c31741609674ca1df39 Mon Sep 17 00:00:00 2001 From: dieriba Date: Mon, 21 Apr 2025 14:43:15 +0200 Subject: [PATCH] increse colum length of url column of websocket table (#5646) --- ...0705_alter_url_column_length_on_websocket_triggers.down.sql | 3 +++ ...120705_alter_url_column_length_on_websocket_triggers.up.sql | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.down.sql create mode 100644 backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.up.sql diff --git a/backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.down.sql b/backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.down.sql new file mode 100644 index 0000000000..18b1b65140 --- /dev/null +++ b/backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.down.sql @@ -0,0 +1,3 @@ +-- Add down migration script here +ALTER TABLE websocket_trigger +ALTER COLUMN url TYPE VARCHAR(255); \ No newline at end of file diff --git a/backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.up.sql b/backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.up.sql new file mode 100644 index 0000000000..51da384e02 --- /dev/null +++ b/backend/migrations/20250421120705_alter_url_column_length_on_websocket_triggers.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +ALTER TABLE websocket_trigger +ALTER COLUMN url TYPE VARCHAR(1000); \ No newline at end of file