Class: IsTaggableMigration
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- IsTaggableMigration
- Defined in:
- lib/generators/spree_cms/install/templates/db/migrate/is_taggable_migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
20 21 22 23 |
# File 'lib/generators/spree_cms/install/templates/db/migrate/is_taggable_migration.rb', line 20 def self.down drop_table :taggings drop_table :tags end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/generators/spree_cms/install/templates/db/migrate/is_taggable_migration.rb', line 2 def self.up create_table :tags do |t| t.string :name, :default => '' t.string :kind, :default => '' end create_table :taggings do |t| t.integer :tag_id t.string :taggable_type, :default => '' t.integer :taggable_id end add_index :tags, [:name, :kind] add_index :taggings, :tag_id add_index :taggings, [:taggable_id, :taggable_type] end |