Class: CreateSeorelSeorels
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateSeorelSeorels
- Defined in:
- lib/seorel/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
17 18 19 |
# File 'lib/seorel/migration.rb', line 17 def self.down drop_table :seorel_seorels end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/seorel/migration.rb', line 2 def self.up create_table :seorel_seorels do |t| t.string :title t.string :description t.string :image t.references :seorelable, polymorphic: true t. end add_index :seorel_seorels, :seorelable_id add_index :seorel_seorels, :seorelable_type add_index :seorel_seorels, [:seorelable_id, :seorelable_type] end |