diff --git a/db/migrate/20110727073510_change_crypted_password_length.rb b/db/migrate/20110727073510_change_crypted_password_length.rb new file mode 100644 index 00000000..cdc1649c --- /dev/null +++ b/db/migrate/20110727073510_change_crypted_password_length.rb @@ -0,0 +1,9 @@ +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