diaspora/db/migrate/20111011193702_add_oembed_cache_to_posts.rb

9 lines
196 B
Ruby

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