diaspora/db/migrate/20110924112840_create_o_embed_caches.rb
2013-07-31 14:42:49 -05:00

14 lines
395 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, :length => { :url => 255 }
end
def self.down
remove_index :o_embed_caches, :column => :url
drop_table :o_embed_caches
end
end