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 / 8a / 8a2387840fb935aa8f0a3b22e4246aa11a6a6959.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (218 Bytes)

1
class ChangeChangesFromRevisionToString < ActiveRecord::Migration
2
  def self.up
3
    change_column :changes, :from_revision, :string
4
  end
5

    
6
  def self.down
7
    change_column :changes, :from_revision, :integer
8
  end
9
end