mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 22:05:56 +01:00
10 lines
170 B
Ruby
10 lines
170 B
Ruby
|
|
class AddBoardsParentId < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
add_column :boards, :parent_id, :integer
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
remove_column :boards, :parent_id
|
||
|
|
end
|
||
|
|
end
|