diaspora/db/migrate/20120203220932_add_interacted_at_to_posts.rb

9 lines
192 B
Ruby

class AddInteractedAtToPosts < ActiveRecord::Migration
def self.up
add_column :posts, :interacted_at, :datetime
end
def self.down
remove_column :posts, :interacted_at
end
end