1class AddImageToCreations < ActiveRecord::Migration 2 def self.up 3 add_column :creations, :image, :string 4 end 5 6 def self.down 7 remove_column :creations, :image 8 end 9end