Ensure ap_id column in users table cannot be null

This commit is contained in:
Mark Felder 2020-08-11 09:52:28 -05:00
parent c66f6bd0ad
commit ff4e282aad
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
defmodule Pleroma.Repo.Migrations.ApIdNotNull do
use Ecto.Migration
def up do
alter table(:users) do
modify(:ap_id, :string, null: false)
end
end
def down do
:ok
end
end