Migrations: Add `accepts_chat_messages` to users.

This commit is contained in:
lain 2020-07-03 12:46:28 +02:00
parent fd5ad99ace
commit 8ad166e8e3
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
defmodule Pleroma.Repo.Migrations.AddChatAcceptanceToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add(:accepts_chat_messages, :boolean, nullable: false, default: false)
end
# Looks stupid but makes the update much faster
execute("update users set accepts_chat_messages = local where local = true")
end
end