Current section

Files

Jump to
condo lib condo.ex
Raw

lib/condo.ex

defmodule Condo do
defdelegate drop_tenant(repo, tenant), to: Condo.TenantActions
defdelegate migrate_tenant(repo, tenant), to: Condo.TenantActions
defdelegate new_tenant(repo, tenant), to: Condo.TenantActions
defdelegate prefix(repo, tenant), to: Condo.TenantActions
defdelegate schema_prefix(tenant), to: Condo.TenantActions
end