2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2013-08-21 05:08:10 -04:00
|
|
|
class RemoveDeprecatedTables < ActiveRecord::Migration
|
|
|
|
def up
|
|
|
|
drop_table :user_teams
|
|
|
|
drop_table :user_team_project_relationships
|
|
|
|
drop_table :user_team_user_relationships
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise 'No rollback for this migration'
|
|
|
|
end
|
|
|
|
end
|