20151012113432_create_kanjai_images.rb 227 Bytes
class CreateKanjaiImages < ActiveRecord::Migration
  def change
    create_table :kanjai_images do |t|
      t.string      :title
      t.references  :object, polymorphic: true

      t.timestamps null: false
    end
  end
end