To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / b7 / b79e266e4acd3c5400f7b2a9ec13bc6b7730bf4f.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (278 Bytes)

1 1296:038ba2d95de8 Chris
class ChangeUsersLoginLimit < ActiveRecord::Migration
2
  def self.up
3
    change_column :users, :login, :string, :limit => nil, :default => '', :null => false
4
  end
5
6
  def self.down
7
    change_column :users, :login, :string, :limit => 30, :default => '', :null => false
8
  end
9
end