2

私は次のような構造を実装しようとしています: 祖父 <- 父 <- 息子 Rails と gem citier を使用します。この例では、3 つのクラスを表す 2 つのテーブルを作成する必要があります。1 つはルート クラス (GrandFather) とその属性用、もう 1 つは父と子のクラス (子には追加の属性がないため) と父の属性を表すためのものです。

class GrandFather < ActiveRecord::Base
    acts_as_citier
    attr_accessible :grand_father_attr, :type
end

class Father < GrandFather
    acts_as_citier
    attr_accessible :father_attr
end

class Son < Father

end

class CreateGrandFathers < ActiveRecord::Migration
    def change
        create_table :grand_fathers do |t|
            t.string :type
            t.string :grand_father_attr
            t.timestamps
        end
    end
end

class CreateFathers < ActiveRecord::Migration
    def up
        create_table :fathers do |t|
            t.string :father_attr
        end
        create_citier_view(Father)
    end

    def down
        drop_citier_view(Father)
        drop_table :fathers
    end
end

しかし、Rails コンソールを開いて「Son.new」と入力すると、GrandFather の属性はありますが、Father クラスの属性はありません。

1.9.3-p362 :001 > Son.new
citier -> Root Class
citier -> table_name -> grand_fathers
citier -> Non Root Class
citier -> table_name -> fathers
citier -> tablename (view) -> view_fathers
   (1.1ms)   SELECT COUNT(*)
 FROM pg_tables
 WHERE tablename = 'grand_fathers'


   (0.5ms)   SELECT COUNT(*)
 FROM pg_views
 WHERE viewname = 'grand_fathers'

 => #<Son id: nil, type: "Son", grand_father_attr: nil, created_at: nil, updated_at: nil> 
4

1 に答える 1

0

私は非常に単純な回避策になりました。私の例では、唯一の変更は次のとおりです。

class Son < Father 
   acts_as_citier :table_name => 'fathers'
end
于 2013-02-21T16:37:21.357 に答える