2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-02-18 22:43:41 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddDiscloseClientToUsers do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2021-02-28 15:04:29 +00:00
|
|
|
def change do
|
2021-02-18 22:43:41 +00:00
|
|
|
alter table(:users) do
|
|
|
|
add(:disclose_client, :boolean, default: true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|