Class: CreateTaggings
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateTaggings
- Defined in:
- lib/generators/templates/create_taggings.rb
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/generators/templates/create_taggings.rb', line 2 def change create_table :taggings do |t| t.references :tag, index: true t.references :taggable, polymorphic: true t.datetime :created_at end add_index :taggings, [:taggable_type, :taggable_id] end |