blob: 09a9528d9f5c8d248d15734ae3869d8890d93d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: false
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
|