Class: CommentemMigration
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CommentemMigration
- Defined in:
- lib/generators/templates/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/templates/migration.rb', line 14 def self.down drop_table :comments end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/generators/templates/migration.rb', line 2 def self.up create_table :comments, :force => true do |t| t.references :commenter, :polymorphic => true, :null => false t.references :commentable, :polymorphic => true, :null => false t.text :content t. end add_index :comments, [:commenter_id, :commenter_type] add_index :comments, [:commentable_id, :commentable_type] end |