Mercurial > hg > soundsoftware-site
view db/migrate/.svn/text-base/100_add_changesets_user_id.rb.svn-base @ 932:5d2b359e644d cannam
Clarify repo instructions to tell user to reload page, not just look at it again
author | Chris Cannam |
---|---|
date | Wed, 04 Jul 2012 11:01:32 +0100 |
parents | 513646585e45 |
children |
line wrap: on
line source
class AddChangesetsUserId < ActiveRecord::Migration def self.up add_column :changesets, :user_id, :integer, :default => nil end def self.down remove_column :changesets, :user_id end end