forked from AkkomaGang/akkoma
Ensure ap_id column in users table cannot be null
This commit is contained in:
parent
c66f6bd0ad
commit
ff4e282aad
1 changed files with 13 additions and 0 deletions
13
priv/repo/migrations/20200811143147_ap_id_not_null.exs
Normal file
13
priv/repo/migrations/20200811143147_ap_id_not_null.exs
Normal 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
|
Loading…
Reference in a new issue