1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/priv/repo/migrations/20190123125546_create_instances.exs
2019-07-01 01:08:07 +00:00

16 lines
376 B
Elixir

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