8 lines
141 B
Ruby
8 lines
141 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DropCommentSmilesTable < ActiveRecord::Migration[6.1]
|
||
|
def up
|
||
|
drop_table :comment_smiles
|
||
|
end
|
||
|
end
|