triplex icon indicating copy to clipboard operation
triplex copied to clipboard

Database multitenancy for Elixir applications!

Results 21 triplex issues
Sort by recently updated
recently updated
newest added

Today I encountered a very cryptic error message trying to run the seeds from a project. We don't have much insight from the stack trace besides knowing it was raised...

user table in public schema ```defmodule Data.Repo.Migrations.CreateUsers do use Ecto.Migration def change do execute("CREATE EXTENSION IF NOT EXISTS pgcrypto") execute("CREATE TYPE gender_t AS ENUM ('male', 'female', 'other')") execute("CREATE TYPE user_t...

The last release on hex.pm is from May 31, 2019. There have been a few commits since then, and there are also a couple of PRs pending. Is there anything...

I'm trying to figure out how to incorporate Triplex into my unit tests. Right now, I have `Triplex.create :test` in my `setup` function, but this has exponentially increased the length...

enhancement

Besides other documentation changes, this commit includes all relevant documents to the generated HTML doc for HexDocs.pm and leverages on latest features of ExDoc.

This deduplicates the timestamp formatting function between the migration generator and MySQL install mix tasks.

# Scenario We deploy using releases, thus Mix is not available and we cannot migrate in production (or other server environments) using the Triplex Mix tasks. We run our public...

I'm adding a in-code Release module so I can perform migrations (and rollbacks) from the complied binary. I see that there is an in-code `Triplex.migrate/2` function but I could not...

Hello! I have a database with different schemata, some belong to tenants, some not. To separate it better with Triplex, I am using the `tenant_prefix` config option. When I run...