OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/20130807081927_move_journal...

9 lines
188 B

class MoveJournalsToLegacyJournals < ActiveRecord::Migration
def up
rename_table :journals, :legacy_journals
end
def down
rename_table :legacy_journals, :journals
end
end