mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-21 08:26:10 +01:00
9 lines
245 B
Ruby
9 lines
245 B
Ruby
class ChangeCryptedPasswordLength < ActiveRecord::Migration
|
|
def self.up
|
|
change_column 'users', 'crypted_password', :string, :limit => 60
|
|
end
|
|
|
|
def self.down
|
|
change_column 'users', 'crypted_password', :string, :limit => 40
|
|
end
|
|
end
|