98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
12 lines
277 B
Ruby
12 lines
277 B
Ruby
# rubocop:disable all
|
|
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
|