Sha256: 7ad39fd7da3a6f6792d1f537c4f7e085b3d711a7d0ba4913007522418fc4b0c7
Contents?: true
Size: 491 Bytes
Versions: 3
Compression:
Stored size: 491 Bytes
Contents
# This migration comes from seo_meta_engine (originally 20110329222114) class CreateSeoMeta < ActiveRecord::Migration def self.up create_table :seo_meta do |t| t.integer :seo_meta_id t.string :seo_meta_type t.string :browser_title t.string :meta_keywords t.text :meta_description t.timestamps end add_index :seo_meta, :id add_index :seo_meta, [:seo_meta_id, :seo_meta_type] end def self.down drop_table :seo_meta end end
Version data entries
3 entries across 3 versions & 2 rubygems