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