mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 13:55:52 +01:00
9 lines
118 B
Ruby
9 lines
118 B
Ruby
|
|
class BuildProjectsTree < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
Project.rebuild!
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
end
|
||
|
|
end
|