Files
codeocean/db/migrate/20181127160857_drop_hints.rb
2021-05-14 22:03:06 +02:00

8 lines
123 B
Ruby

# frozen_string_literal: true
class DropHints < ActiveRecord::Migration[5.2]
def change
drop_table :hints
end
end