8 lines
123 B
Ruby
8 lines
123 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropHints < ActiveRecord::Migration[5.2]
|
|
def change
|
|
drop_table :hints
|
|
end
|
|
end
|