diff --git a/worker/priv/repo/migrations/20240903201027_add_server.exs b/worker/priv/repo/migrations/20240903201027_add_server.exs index 1773e7c5..fab7f65f 100644 --- a/worker/priv/repo/migrations/20240903201027_add_server.exs +++ b/worker/priv/repo/migrations/20240903201027_add_server.exs @@ -25,15 +25,6 @@ defmodule Tornium.Repo.Migrations.AddServer do add :armory_enabled, :boolean, default: false, null: false add :armory_config, :map, default: %{}, null: false - add :assist_channel, :bigint, default: 0, null: false - add :assist_factions, {:array, :integer}, default: [], null: false - add :assist_smoker_roles, {:array, :bigint}, default: [], null: false - add :assist_tear_roles, {:array, :bigint}, default: [], null: false - add :assist_l0_roles, {:array, :bigint}, default: [], null: false - add :assist_l1_roles, {:array, :bigint}, default: [], null: false - add :assist_l2_roles, {:array, :bigint}, default: [], null: false - add :assist_l3_roles, {:array, :bigint}, default: [], null: false - add :oc_config, :map, default: %{}, null: false end diff --git a/worker/priv/repo/migrations/20240907183747_add_faction.exs b/worker/priv/repo/migrations/20240907183747_add_faction.exs index b1ad8c12..23e47d0a 100644 --- a/worker/priv/repo/migrations/20240907183747_add_faction.exs +++ b/worker/priv/repo/migrations/20240907183747_add_faction.exs @@ -13,8 +13,6 @@ defmodule Tornium.Repo.Migrations.AddFaction do add :guild_id, references(:server, column: :sid, type: :bigint) - add :assist_servers, {:array, :bigint}, default: [], null: false - add :stats_db_enabled, :boolean, default: true, null: false add :stats_db_global, :boolean, default: true, null: false