Page MenuHomeGRNET

20160120201052_add_pool_field_to_settings.rb
No OneTemporary

File Metadata

Created
Sun, May 18, 11:45 PM

20160120201052_add_pool_field_to_settings.rb

class AddPoolFieldToSettings < ActiveRecord::Migration
def up
add_column :configuration_settings, :pool, :string, default: {}.to_json
end
def down
remove_column :configuration_settings, :pool
end
end

Event Timeline