This post originated from an RSS feed registered with Ruby Buzz
by Jamis Buck.
Original Post: Two tips for working with databases in Rails
Feed Title: the buckblogs here
Feed URL: http://weblog.jamisbuck.org/blog.cgi/programming/index.rss
Feed Description: Jamis Buck's corner of the blogging universe. Mostly about ruby, but includes ramblings on a variety of topics.
First tip: I’ve found recently that if I have a boolean field in the database that is being used to mark whether some event occurred (referrals.pending, or feeds.subscribed) it is often more effective to make the field a datetime and record the moment that the event occurred. Then, a NULL can be used to indicate that the event has not yet occurred. Thus, you have referrals.applied_at with a method on Referral like this:
1
2
3
def pending?applied_at.nil?end
This gives you the capability down the road to not only report whether the event occurred, but how frequently over various periods of time.
The second tip is handy when you’re working on a migration. I find that the process (for me) works like this:
Create the migration and run it.
Discover I forgot something.
Migrate down to the previous schema version.
Change the migration and run it again.
(Repeat as necessary.) However, being the imperfect programmer that I am, I find that I often implement the #down method incorrectly, forgetting to drop a table or remove a column. Thus, when I try to run the migration again, it fails saying that the table/column already exists.
Using script/console and ActiveRecord::Schema, it becomes a cinch to clean up the artifacts: