mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
@@ -19,7 +19,7 @@ defmodule FzHttp.Repo.Migrations.MoveSitesFieldsToConfigurations do
|
||||
add(:default_client_persistent_keepalive, :integer)
|
||||
add(:default_client_endpoint, :string)
|
||||
add(:default_client_dns, :string)
|
||||
add(:default_client_allowed_ips, :string)
|
||||
add(:default_client_allowed_ips, :text)
|
||||
|
||||
# XXX: Note this is different than the WIREGUARD_MTU env var which
|
||||
# configures the server interface MTU.
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
defmodule FzHttp.Repo.Migrations.ChangeConfigurationsDefaultClientAllowedIpsType do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
alter table(:configurations) do
|
||||
modify(:default_client_allowed_ips, :text)
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user