retrospring/db/migrate/20220706174816_drop_comment_smiles_table.rb
2022-07-06 20:00:44 +02:00

7 lines
141 B
Ruby

# frozen_string_literal: true
class DropCommentSmilesTable < ActiveRecord::Migration[6.1]
def up
drop_table :comment_smiles
end
end