mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 22:05:56 +01:00
10 lines
176 B
Ruby
10 lines
176 B
Ruby
|
|
class AddUsersSalt < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_column :users, :salt, :string, :limit => 64
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_column :users, :salt
|
||
|
|
end
|
||
|
|
end
|