mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 11:56:18 +01:00
10 lines
198 B
Ruby
10 lines
198 B
Ruby
|
|
class AddRepositoriesExtraInfo < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_column :repositories, :extra_info, :text
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_column :repositories, :extra_info
|
||
|
|
end
|
||
|
|
end
|