summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20230529193453_add_citext.exs
blob: 371df8d16d717d14e66301645581503658aa8002 (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 citext")
  end

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