Page MenuHomeGRNET

20151112212531_create_ownerships.rb
No OneTemporary

File Metadata

Created
Sat, Jan 17, 2:28 PM

20151112212531_create_ownerships.rb

class CreateOwnerships < ActiveRecord::Migration
def connection
ActiveRecord::Base.establish_connection(Baas::settings[:local_db]).connection
end
def up
create_table :ownerships do |t|
t.integer :user_id, index: true
t.integer :host_id, index: true
t.timestamps
end
end
def down
drop_table :ownerships
end
end

Event Timeline