ash_postgres/priv/test_repo/migrations/20240109155951_create_temp_schema.exs
Eduardo B. Alexandre d5d312de56 feat: Add unit test to check lateral joins
with custom schemas and tables
2024-01-10 08:19:10 -05:00

11 lines
225 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.CreateTempSchema do
use Ecto.Migration
def up do
execute("create schema if not exists \"temp\"")
end
def down do
execute("drop schema if exists \"temp\"")
end
end