You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
akkoma-cachapa/priv/repo/migrations/20190123125546_create_insta...

16 lines
380 B

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