diaspora/db/migrate/20110524184202_add_object_id_to_post.rb
2011-05-25 12:16:52 -07:00

10 lines
239 B
Ruby

class AddObjectIdToPost < ActiveRecord::Migration
def self.up
add_column(:posts, :objectId, :integer)
execute("UPDATE posts SET objectId = object_url")
end
def self.down
add_column(:posts, :objectId, :integer)
end
end