Tagged Questions

7
votes
5answers
969 views

What is the best way to empty a self-referential MySQL table?

I have a self-referential MySQL table with a recursive parent_id: CREATE TABLE `recursive` ( `id` int(11) NOT NULL auto_increment, `parent_id` int(11) default NULL, `name` varchar(100) NOT ...
4
votes
3answers
339 views

has_many :through multiple has_one relationships?

I'm writing a mentorship program for our church in rails (im still farily new to rails).. And i need to model this.. contact has_one :father, :class_name => "Contact" has_one :mother, :class_name ...
1
vote
2answers
103 views

Class method problem with bidirectional self-referential associations

I'm trying to create an app where users ('current_user') rate the compatibility between two other users ('user1' and 'user2'). They can rate compatibility either positively or negatively: rating two ...
0
votes
1answer
245 views

How to model family relationships in rails 3?

I'm working on a contact database in rails 3.. One thing thats really frustrating is how ugly the family relationship code is.. Is there a clean way of doing this in rails? Basically all contacts ...