diff options
| author | lain <lain@soykaf.club> | 2020-07-03 13:12:23 +0200 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-07-03 13:12:23 +0200 | 
| commit | 37fdb05058d17abde11fd3e55ce896464c7d22e4 (patch) | |
| tree | 0de7b532feba6b906777a1f15edc4ab29a811e63 /priv | |
| parent | 3250228be9719b0afa24c97b64f56d2275c4fe67 (diff) | |
| download | pleroma-37fdb05058d17abde11fd3e55ce896464c7d22e4.tar.gz pleroma-37fdb05058d17abde11fd3e55ce896464c7d22e4.zip | |
User, Migration: Change `accepts_chat_messages` to be nullable
This is to model the ambiguous state of most users.
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/repo/migrations/20200703101031_add_chat_acceptance_to_users.exs | 13 | 
1 files changed, 9 insertions, 4 deletions
| diff --git a/priv/repo/migrations/20200703101031_add_chat_acceptance_to_users.exs b/priv/repo/migrations/20200703101031_add_chat_acceptance_to_users.exs index 4ae3c4201..8dfda89f1 100644 --- a/priv/repo/migrations/20200703101031_add_chat_acceptance_to_users.exs +++ b/priv/repo/migrations/20200703101031_add_chat_acceptance_to_users.exs @@ -1,12 +1,17 @@  defmodule Pleroma.Repo.Migrations.AddChatAcceptanceToUsers do    use Ecto.Migration -  def change do +  def up do      alter table(:users) do -      add(:accepts_chat_messages, :boolean, nullable: false, default: false) +      add(:accepts_chat_messages, :boolean, nullable: true)      end -    # Looks stupid but makes the update much faster -    execute("update users set accepts_chat_messages = local where local = true") +    execute("update users set accepts_chat_messages = true where local = true") +  end + +  def down do +    alter table(:users) do +      remove(:accepts_chat_messages) +    end    end  end | 
