summaryrefslogtreecommitdiffstats
path: root/db/migrate/20110223180944_add_users_salt.rb
blob: 5fda33479a1bad0d34bb433712fe9e82d0de8108 (plain)
1
2
3
4
5
6
7
8
9
class AddUsersSalt < ActiveRecord::Migration[4.2]
  def self.up
    add_column :users, :salt, :string, :limit => 64
  end

  def self.down
    remove_column :users, :salt
  end
end