2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2014-09-02 18:07:02 +05:30
|
|
|
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
|