diff options
author | lain <lain@soykaf.club> | 2020-08-13 11:01:03 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-08-13 11:01:03 +0000 |
commit | 2bc2b321b6b56cbb50b484181042ccaae3d8707c (patch) | |
tree | 192c37a011a32e2dafb554507240e46eac91d108 | |
parent | 5be25b3e380e741af5d3bebd6a4e8db0efcd1e8e (diff) | |
parent | aaf7bd89a71b174ad54040eb9a6106df51ef7ad5 (diff) | |
download | pleroma-2bc2b321b6b56cbb50b484181042ccaae3d8707c.tar.gz pleroma-2bc2b321b6b56cbb50b484181042ccaae3d8707c.zip |
Merge branch 'fix/users_ap_id_not_null' into 'develop'
Ensure ap_id column in users table cannot be null
See merge request pleroma/pleroma!2875
-rw-r--r-- | priv/repo/migrations/20200811143147_ap_id_not_null.exs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200811143147_ap_id_not_null.exs b/priv/repo/migrations/20200811143147_ap_id_not_null.exs new file mode 100644 index 000000000..df649c7ca --- /dev/null +++ b/priv/repo/migrations/20200811143147_ap_id_not_null.exs @@ -0,0 +1,19 @@ +defmodule Pleroma.Repo.Migrations.ApIdNotNull do + use Ecto.Migration + + require Logger + + def up do + Logger.warn( + "If this migration fails please open an issue at https://git.pleroma.social/pleroma/pleroma/-/issues/new \n" + ) + + alter table(:users) do + modify(:ap_id, :string, null: false) + end + end + + def down do + :ok + end +end |