thirteen-tien-len/db/migrate/20231202164132_create_join_table_bots_commands.rb

9 lines
220 B
Ruby

class CreateJoinTableBotsCommands < ActiveRecord::Migration[6.1]
def change
create_join_table :bots, :commands do |t|
# t.index [:bot_id, :command_id]
# t.index [:command_id, :bot_id]
end
end
end