aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/087_add_about_me.rb
blob: 9916454f3b60c1c9d33cc9dd34a5fa8e4ed69295 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddAboutMe < ActiveRecord::Migration
    def self.up
        add_column :users, :about_me, :text, :null => false, :default => ""
    end

    def self.down
        raise "No reverse migration"
        #remove_column :users, :about_me
    end
end