1class CreatePhotos < ActiveRecord::Migration 2 def change 3 create_table :photos do |t| 4 t.integer :creation_id 5 t.string :image 6 7 t.timestamps 8 end 9 end 10end