Handle not ready repos
[gitorious.git] / db / migrate / 013_add_fullname_to_users.rb
bloba1a9851ed067698eeef5c2c030b5fc5ffcb99861
1 class AddFullnameToUsers < ActiveRecord::Migration
2   def self.up
3     add_column :users, :fullname, :string
4   end
6   def self.down
7     remove_column :users, :fullname
8   end
9 end