Handle not ready repos
[gitorious.git] / db / migrate / 20090218113100_adding_eula_version_to_users.rb
blob8135797016a8c4c6c511147da04ea0c6085d3c7f
1 class AddingEulaVersionToUsers < ActiveRecord::Migration
2   def self.up
3     add_column :users, :accepted_license_agreement_version, :string
4   end
6   def self.down
7     remove_column :users, :accepted_license_agreement_version
8   end
9 end