A sophisticated Discord bot that bridges Arma 3 Exile servers with Discord communities. Built in Ruby with secure TCP communication, it delivers territory management, real-time notifications, and comprehensive server administration right in your Discord channels.
# frozen_string_literal: true
class CommunitiesOwnerId < ActiveRecord::Migration[8.1]
def change
change_table(:communities) do |t|
t.belongs_to :owner_user, foreign_key: {to_table: :users}, index: true
end
end
end