summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20230529193453_add_citext.exs
blob: 7fb6a2aef53f62ddf49d9698c46e8045aae169db (plain)
1
2
3
4
5
6
7
8
9
10
11
defmodule Chessh.Repo.Migrations.AddCitext do
  use Ecto.Migration

  def up do
    execute("CREATE EXTENSION IF NOT EXISTS citext")
  end

  def down do
    execute("DROP EXTENSION IF EXISTS citext")
  end
end