-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b6c1db1
commit 7d48552
Showing
9 changed files
with
41 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
lib/ash_hq/docs/resources/library/preparations/filter_pending_import.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
priv/repo/migrations/20240403011834_install_5_extensions.exs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
defmodule AshHq.Repo.Migrations.Install5Extensions20240403011833 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 \"pg_trgm\"") | ||
execute("CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\"") | ||
execute("CREATE EXTENSION IF NOT EXISTS \"citext\"") | ||
execute("CREATE EXTENSION IF NOT EXISTS \"pg_stat_statements\"") | ||
execute("CREATE EXTENSION IF NOT EXISTS \"sslinfo\"") | ||
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 \"pg_trgm\"") | ||
# execute("DROP EXTENSION IF EXISTS \"uuid-ossp\"") | ||
# execute("DROP EXTENSION IF EXISTS \"citext\"") | ||
# execute("DROP EXTENSION IF EXISTS \"pg_stat_statements\"") | ||
# execute("DROP EXTENSION IF EXISTS \"sslinfo\"") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"installed": [ | ||
"pg_trgm", | ||
"uuid-ossp", | ||
"citext", | ||
"pg_stat_statements", | ||
"sslinfo" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.