ash_postgres/priv/test_repo/tenant_migrations/20220805191441_migrate_resources1.exs
Zach Daniel eb2bd267cb improvement: fix typecasting for calculations & embed access
chore: rebuild test migrations
2022-08-05 15:27:22 -04:00

40 lines
No EOL
1.1 KiB
Elixir

defmodule AshPostgres.TestRepo.TenantMigrations.MigrateResources1 do
@moduledoc """
Updates resources based on their most recent snapshots.
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
create table(:multitenant_posts, primary_key: false, prefix: prefix()) do
add :id, :uuid, null: false, default: fragment("uuid_generate_v4()"), primary_key: true
add :name, :text
add :org_id,
references(:multitenant_orgs,
column: :id,
prefix: "public",
name: "multitenant_posts_org_id_fkey",
type: :uuid
)
add :user_id,
references(:users,
column: :id,
prefix: "public",
name: "multitenant_posts_user_id_fkey",
type: :uuid
)
end
end
def down do
drop constraint(:multitenant_posts, "multitenant_posts_user_id_fkey")
drop constraint(:multitenant_posts, "multitenant_posts_org_id_fkey")
drop table(:multitenant_posts, prefix: prefix())
end
end