Class: RepopMigration
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- RepopMigration
- Defined in:
- lib/generators/repop/migration/templates/active_record/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/repop/migration/templates/active_record/migration.rb', line 15 def self.down drop_table :repops end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/repop/migration/templates/active_record/migration.rb', line 2 def self.up create_table :repops do |t| t.references :repopable, :polymorphic => true t.string :key t.string :value t. end add_index :repops, :repopable_id add_index :repops, :repopable_type end |