diaspora/db/migrate/20110924112840_create_o_embed_caches.rb
2011-10-11 16:08:47 -07:00

14 lines
367 B
Ruby

class CreateOEmbedCaches < ActiveRecord::Migration
def self.up
create_table :o_embed_caches do |t|
t.string :url, :limit => 1024, :null => false, :unique => true
t.text :data, :null => false
end
add_index :o_embed_caches, :url
end
def self.down
remove_index :o_embed_caches, :column => :url
drop_table :o_embed_caches
end
end