6 lines
103 B
Ruby
6 lines
103 B
Ruby
|
class RemoveChatMutes < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
drop_table :chat_mutes
|
||
|
end
|
||
|
end
|