9 lines
192 B
Ruby
9 lines
192 B
Ruby
class AddAuthSourcesTimeout < ActiveRecord::Migration[4.2]
|
|
def up
|
|
add_column :auth_sources, :timeout, :integer
|
|
end
|
|
|
|
def self.down
|
|
remove_column :auth_sources, :timeout
|
|
end
|
|
end
|