2cd35cc07c1e9234a8ef91c5cef4e291ee444c95
[anni] / priv / repo / migrations / 20191026191401_set_not_null_for_oauth_tokens.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.SetNotNullForOauthTokens 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 oauth_tokens
12     ALTER COLUMN app_id SET NOT NULL")
13   end
14
15   def down do
16     execute("ALTER TABLE oauth_tokens
17     ALTER COLUMN app_id DROP NOT NULL")
18   end
19 end