7b1b605ae8
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12199 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
193 B
Ruby
10 lines
193 B
Ruby
class AddRepositoriesCreatedOn < ActiveRecord::Migration
|
|
def up
|
|
add_column :repositories, :created_on, :timestamp
|
|
end
|
|
|
|
def down
|
|
remove_column :repositories, :created_on
|
|
end
|
|
end
|