6 lines
139 B
Ruby
6 lines
139 B
Ruby
# rubocop:disable all
|
|
class AddTokenToWebHooks < ActiveRecord::Migration
|
|
def change
|
|
add_column :web_hooks, :token, :string
|
|
end
|
|
end
|