class Company has_and_belongs_to_many :users end class User has_and_belongs_to_many :companies end
when i delete a company, what\'s the best (
If you call destroy instead of delete, associations will be deleted automatically.