1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 14:49:15 +00:00
akkoma/priv/repo/migrations/20190123125546_create_instances.exs

16 lines
376 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.CreateInstances do
use Ecto.Migration
def change do
2019-07-01 01:08:07 +00:00
create_if_not_exists table(:instances) do
add :host, :string
add :unreachable_since, :naive_datetime_usec
timestamps()
end
2019-07-01 01:08:07 +00:00
create_if_not_exists unique_index(:instances, [:host])
create_if_not_exists index(:instances, [:unreachable_since])
end
end