Sha256: 372d75ce5c5f0a03efc751bfd299b563192ccf163a2a457ea882f07333a814c2
Contents?: true
Size: 321 Bytes
Versions: 6
Compression:
Stored size: 321 Bytes
Contents
class CreateVimeoEmbedCache < ActiveRecord::Migration def self.up create_table :vimeo_embed_cache do |t| t.string :vid t.string :code t.text :configuration t.timestamps end add_index :vimeo_embed_cache, [:vid] end def self.down drop_table :vimeo_embed_cache end end
Version data entries
6 entries across 6 versions & 1 rubygems