20170205175257_remove_devices.rb 156 B

1234567
  1. # frozen_string_literal: true
  2. class RemoveDevices < ActiveRecord::Migration[5.0]
  3. def change
  4. drop_table :devices if table_exists?(:devices)
  5. end
  6. end