class CreateCustomCommands < ActiveRecord::Migration[6.1]
def up
create_table :custom_commands do |table|
table.string :roomid
table.string :command
table.string :response
table.timestamps
end
def down
drop_table :custom_commands