logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: e80f90e9dbdb6955e355d6a06eb69ee7051ba6df
parent: 248020075982a18534aebec3ff63eee0ae6185f4
Author: lain <lain@soykaf.club>
Date:   Mon, 28 Oct 2019 08:05:14 +0000

Merge branch 'fix/migration' into 'develop'

Fix `SetNotNullForUsers` migration

See merge request pleroma/pleroma!1913

Diffstat:

Mpriv/repo/migrations/20191026191910_set_not_null_for_users.exs2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/priv/repo/migrations/20191026191910_set_not_null_for_users.exs b/priv/repo/migrations/20191026191910_set_not_null_for_users.exs @@ -8,7 +8,6 @@ defmodule Pleroma.Repo.Migrations.SetNotNullForUsers do execute("UPDATE users SET follower_count = 0 WHERE follower_count IS NULL") execute("ALTER TABLE users - ALTER COLUMN following SET NOT NULL, ALTER COLUMN local SET NOT NULL, ALTER COLUMN source_data SET NOT NULL, ALTER COLUMN note_count SET NOT NULL, @@ -27,7 +26,6 @@ defmodule Pleroma.Repo.Migrations.SetNotNullForUsers do def down do execute("ALTER TABLE users - ALTER COLUMN following DROP NOT NULL, ALTER COLUMN local DROP NOT NULL, ALTER COLUMN source_data DROP NOT NULL, ALTER COLUMN note_count DROP NOT NULL,