summaryrefslogblamecommitdiff
path: root/lib/matrix_app_service/migrations.ex
blob: e6ce4694d7c60f5152125c292486075f20682e98 (plain) (tree)

























                                             
defmodule MatrixAppService.Migrations do
  use Ecto.Migration

  def change do
    create table(:users) do
      add :local_id, :string
      add :remote_id, :string
      add :data, :map

      timestamps()
    end
    create unique_index(:users, [:local_id])
    create unique_index(:users, [:remote_id])


    create table(:rooms) do
      add :local_id, :string
      add :remote_id, :string
      add :data, :map

      timestamps()
    end
    create unique_index(:rooms, [:local_id])
    create unique_index(:rooms, [:remote_id])
  end
end