Class: CreatePrints
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreatePrints
- Defined in:
- lib/generators/how_are_we_doing/install/templates/db/migrate/create_prints.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
13 14 15 |
# File 'lib/generators/how_are_we_doing/install/templates/db/migrate/create_prints.rb', line 13 def self.down drop_table :prints end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 |
# File 'lib/generators/how_are_we_doing/install/templates/db/migrate/create_prints.rb', line 2 def self.up create_table :prints do |t| t.references :printable, :polymorphic => true t.references :user t. end add_index :prints, [:printable_id, :printable_type] add_index :prints, :user_id end |