Show More
Commit Description:
added password recovery through e-mails...
Commit Description:
added password recovery through e-mails
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@400 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
db/migrate/20081215012843_change_user_login_string_limit.rb
| 9 lines
| 248 B
| text/x-ruby
| RubyLexer
|
|
r162 | class ChangeUserLoginStringLimit < ActiveRecord::Migration | ||
def self.up | ||||
execute "ALTER TABLE `users` CHANGE `login` `login` VARCHAR( 50 )" | ||||
end | ||||
def self.down | ||||
execute "ALTER TABLE `users` CHANGE `login` `login` VARCHAR( 10 )" | ||||
end | ||||
end | ||||