Page MenuHomeGRNET

20151112212531_create_ownerships.rb
No OneTemporary

File Metadata

Created
Sun, Aug 10, 8:55 AM

20151112212531_create_ownerships.rb

class CreateOwnerships < ActiveRecord::Migration
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