Add forward extremities to rooms

This commit is contained in:
Pim Kunis 2021-07-25 14:57:52 +02:00
parent 937204b73a
commit 8a5bba72fb
5 changed files with 78 additions and 37 deletions

View file

@ -0,0 +1,9 @@
defmodule MatrixServer.Repo.Migrations.AddForwardExtremitiesToRooms do
use Ecto.Migration
def change do
alter table(:rooms) do
add :forward_extremities, {:array, :string}, default: [], null: false
end
end
end