Merge branch 'develop' into feature/reports-groups-and-multiple-state-update
[akkoma] / priv / repo / migrations / 20191026191023_set_not_null_for_instances.exs
1 defmodule Pleroma.Repo.Migrations.SetNotNullForInstances 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 instances
8 ALTER COLUMN host SET NOT NULL")
9 end
10
11 def down do
12 execute("ALTER TABLE instances
13 ALTER COLUMN host DROP NOT NULL")
14 end
15 end