feat: Remove restrictions on API channel webhook_url (#2261)

This commit is contained in:
Pranav Raj S
2021-05-13 15:03:25 +05:30
committed by GitHub
parent 35f8d01a0c
commit 836b317b8a
6 changed files with 50 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
class RemoveNotNullFromWebhookUrlChannelApi < ActiveRecord::Migration[6.0]
def change
change_column :channel_api, :webhook_url, :string, null: true
end
end