diaspora/db/migrate/20110525213325_add_root_id_to_posts.rb
2011-07-21 18:22:17 -07:00

9 lines
173 B
Ruby

class AddRootIdToPosts < ActiveRecord::Migration
def self.up
add_column :posts, :root_id, :integer
end
def self.down
remove_column :posts, :root_id
end
end