Displaying 1 result from an estimated 1 matches for "detail_id".
Did you mean:
detail&aid
2012 Apr 05
0
Polymorphism, acts_as_relation gem and nested attributes
...e_table :details, :as_relation_superclass => true do |t|
t.timestamps
end
end
end
class CreateEmails < ActiveRecord::Migration
def change
create_table :emails do |t|
t.string :address
t.string :address_type
t.string :detail_id
t.timestamps
end
end
end
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :name
t.string :username
t.string :password
t.timestamps
end
end
end
I...