Migration Timestamps deleted_at Magic Field
I was recently working on a project using edge rails and saw that it supported something like what used to be called sexy migrations. Basically, you can make your migration files look a whole lot cleaner.
Before
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.column [...]