fix(citext): added missing citext extension migration
This commit is contained in:
parent
30beee0496
commit
b0dcd27049
1 changed files with 19 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
defmodule Mv.Repo.Migrations.AddAccountsDomainExtensions do
|
||||
@moduledoc """
|
||||
Installs any extensions that are mentioned in the repo's `installed_extensions/0` callback
|
||||
|
||||
This file was autogenerated with `mix ash_postgres.generate_migrations`
|
||||
"""
|
||||
|
||||
use Ecto.Migration
|
||||
|
||||
def up do
|
||||
execute("CREATE EXTENSION IF NOT EXISTS \"citext\"")
|
||||
end
|
||||
|
||||
def down do
|
||||
# Uncomment this if you actually want to uninstall the extensions
|
||||
# when this migration is rolled back:
|
||||
# execute("DROP EXTENSION IF EXISTS \"citext\"")
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue