summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190123125546_create_instances.exs
blob: e3dca393c02c8fcc44c09f9b8020acfd5fdc2781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.CreateInstances do
  use Ecto.Migration

  def change do
    create_if_not_exists table(:instances) do
      add(:host, :string)
      add(:unreachable_since, :naive_datetime_usec)

      timestamps()
    end

    create_if_not_exists(unique_index(:instances, [:host]))
    create_if_not_exists(index(:instances, [:unreachable_since]))
  end
end