Search Results

9
votes

What is the easiest way to duplicate an activerecord record?

To get a copy, use the clone method: new_record = old_record.clone Then you can change whichever fields you want. …
3
votes

Layer Supertype in ActiveRecord (Rails)

Try using an abstract class for your domain object. class DomainObject < ActiveRecord::Base self.abstract_class = true # your stuff goes here end With an ab …
1
vote

Layer Supertype in ActiveRecord (Rails)

Another method that I used at a previous job for stripping HTML tags from models is to create a plugin. We stripped a lot more than just HTML tags, but here is the HTML stripping portion: T …
1
vote

does cloning affect activerecord callbacks?

From the look of your class descriptions, I would not expect a cascading delete when you destroy a Schedule object. If you delete a Project object, then Rails should go through child Tasks and Sche …
1
vote

ActiveRecord find with association details

It might be easier in a two step process. Step 1 get the list of games the user is involved in: games_playing = user.games.for_status('playing') Step 2 ge …