class CreatePictureRecognitions < ActiveRecord::Migration
  def change
    create_table :picture_recognitions do |t|
      t.string :label
      t.string :category	
      t.string :picture
      t.timestamps
    end
  end
end
