debian-mirror-gitlab/db/migrate/20130821090530_remove_deprecated_tables.rb
2016-06-16 23:09:34 +05:30

13 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