mirror of
https://github.com/redmine/redmine.git
synced 2025-11-18 03:00:52 +01:00
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
|