mirror of
https://github.com/redmine/redmine.git
synced 2026-03-06 04:21:23 +01:00
TODO: * fix Darcs support and add tests for Darcs * maybe remove scmid column by moving commit hashes to Changeset#revision for all DSCM git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1201 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
213 B
Ruby
10 lines
213 B
Ruby
class ChangeChangesetsRevisionToString < ActiveRecord::Migration
|
|
def self.up
|
|
change_column :changesets, :revision, :string
|
|
end
|
|
|
|
def self.down
|
|
change_column :changesets, :revision, :integer
|
|
end
|
|
end
|