d43f185ae09f5678c3005559469236377ff2467d
[anni] / priv / repo / migrations / 20191026190500_set_not_null_for_apps.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.SetNotNullForApps do
6   use Ecto.Migration
7
8   # modify/3 function will require index recreation, so using execute/1 instead
9
10   def up do
11     execute("ALTER TABLE apps
12     ALTER COLUMN client_name SET NOT NULL,
13     ALTER COLUMN redirect_uris SET NOT NULL")
14   end
15
16   def down do
17     execute("ALTER TABLE apps
18     ALTER COLUMN client_name DROP NOT NULL,
19     ALTER COLUMN redirect_uris DROP NOT NULL")
20   end
21 end