Add changelog entry for hashtag following
[akkoma] / priv / repo / migrations / 20191026191826_set_not_null_for_user_invite_tokens.exs
1 defmodule Pleroma.Repo.Migrations.SetNotNullForUserInviteTokens do
2 use Ecto.Migration
3
4 # modify/3 function will require index recreation, so using execute/1 instead
5
6 def up do
7 execute("ALTER TABLE user_invite_tokens
8 ALTER COLUMN used SET NOT NULL,
9 ALTER COLUMN uses SET NOT NULL,
10 ALTER COLUMN invite_type SET NOT NULL")
11 end
12
13 def down do
14 execute("ALTER TABLE user_invite_tokens
15 ALTER COLUMN used DROP NOT NULL,
16 ALTER COLUMN uses DROP NOT NULL,
17 ALTER COLUMN invite_type DROP NOT NULL")
18 end
19 end