4eda233e09
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
7 lines
156 B
Ruby
7 lines
156 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddTemplateToWebhooks < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :webhooks, :template, :text
|
|
end
|
|
end
|