7 lines
169 B
Ruby
7 lines
169 B
Ruby
class AddNameToPoolVersions < ActiveRecord::Migration[4.2]
|
|
def change
|
|
execute("set statement_timeout = 0")
|
|
add_column :pool_versions, :name, :string
|
|
end
|
|
end
|