diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2019-10-26 22:55:29 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2019-10-26 22:55:29 +0300 |
commit | 281072921874465ac2968c82131c0c4730688de2 (patch) | |
tree | 3b285e6831dff9012907ea0af31b4f78ab4b4bd9 | |
parent | 07a6f8b8a33a137101dd1ceebc4fb5f5748c055b (diff) | |
download | pleroma-281072921874465ac2968c82131c0c4730688de2.tar.gz |
Add migration
-rw-r--r-- | priv/repo/migrations/20191026191635_set_not_null_for_registrations.exs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/priv/repo/migrations/20191026191635_set_not_null_for_registrations.exs b/priv/repo/migrations/20191026191635_set_not_null_for_registrations.exs new file mode 100644 index 000000000..ddfbf4c5e --- /dev/null +++ b/priv/repo/migrations/20191026191635_set_not_null_for_registrations.exs @@ -0,0 +1,19 @@ +defmodule Pleroma.Repo.Migrations.SetNotNullForRegistrations do + use Ecto.Migration + + # modify/3 function will require index recreation, so using execute/1 instead + + def up do + execute("ALTER TABLE registrations + ALTER COLUMN provider SET NOT NULL, + ALTER COLUMN uid SET NOT NULL, + ALTER COLUMN info SET NOT NULL") + end + + def down do + execute("ALTER TABLE registrations + ALTER COLUMN provider DROP NOT NULL, + ALTER COLUMN uid DROP NOT NULL, + ALTER COLUMN info DROP NOT NULL") + end +end |