mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2026-02-15 17:16:57 +00:00
11 lines
233 B
Elixir
11 lines
233 B
Elixir
defmodule Pleroma.Repo.Migrations.AddPinnedToChats do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:chats) do
|
|
add(:pinned, :boolean, default: false, null: false)
|
|
end
|
|
|
|
create(index(:chats, [:pinned]))
|
|
end
|
|
end
|