1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00
redmine/db/migrate/20120731164049_add_boards_parent_id.rb

10 lines
175 B
Ruby

class AddBoardsParentId < ActiveRecord::Migration[4.2]
def up
add_column :boards, :parent_id, :integer
end
def down
remove_column :boards, :parent_id
end
end