Page MenuHomeGRNET

20160131105935_add_temp_hosts_to_user.rb
No OneTemporary

File Metadata

Created
Sun, May 18, 1:31 AM

20160131105935_add_temp_hosts_to_user.rb

class AddTempHostsToUser < ActiveRecord::Migration
def up
add_column :users, :temp_hosts, :string, default: [].to_json
end
def down
remove_column :users, :temp_hosts
end
end

Event Timeline