2013-05-01から1ヶ月間の記事一覧

Rails 3.2.13 の Associations でデッドロックが起こるかもしれない問題

データベースに InnoDB の MySQL を用いた Rails アプリケーションで、次のような二つのクラスを用意します。 class Parent < ActiveRecord::Base attr_accessible :name has_many :children, :dependent => :destroy end class Child < ActiveRecord::Base …