Class: AttachmentMagickMigration
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AttachmentMagickMigration
- Defined in:
- lib/generators/attachment_magick/templates/attachment_magick_migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/attachment_magick/templates/attachment_magick_migration.rb', line 15 def self.down drop_table "amagick_images" end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/attachment_magick/templates/attachment_magick_migration.rb', line 2 def self.up create_table "amagick_images" do |t| t.string :photo_uid t.string :caption t.integer :priority t.string :source t.string :image_type t.references :imageable, :polymorphic => true t. end end |