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 / 28 / 28c55237005397dcf3a85d298cbf8e75ea928379.svn-base @ 1298:4f746d8966dd

History | View | Annotate | Download (264 Bytes)

1
class ChangeProjectsHomepageLimit < ActiveRecord::Migration
2
  def self.up
3
    change_column :projects, :homepage, :string, :limit => nil, :default => ''
4
  end
5

    
6
  def self.down
7
    change_column :projects, :homepage, :string, :limit => 60, :default => ''
8
  end
9
end