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

Version Path
refinerycms-vimeo-videos-0.1.9.rc3 db/migrate/create_vimeo_embed_cache.rb
refinerycms-vimeo-videos-0.1.9.rc2 db/migrate/create_vimeo_embed_cache.rb
refinerycms-vimeo-videos-0.1.9.rc1 db/migrate/create_vimeo_embed_cache.rb
refinerycms-vimeo-videos-0.1.8.1 db/migrate/create_vimeo_embed_cache.rb
refinerycms-vimeo-videos-0.1.8 db/migrate/create_vimeo_embed_cache.rb
refinerycms-vimeo-videos-0.1.7 db/migrate/create_vimeo_embed_cache.rb