6 lines
138 B
Ruby
6 lines
138 B
Ruby
|
class AddServiceIdToWebHook < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :web_hooks, :service_id, :integer, null: true
|
||
|
end
|
||
|
end
|