ecto_mnesia icon indicating copy to clipboard operation
ecto_mnesia copied to clipboard

Ecto adapter for Mnesia Erlang term database.

Results 31 ecto_mnesia issues
Sort by recently updated
recently updated
newest added

To upgrade elixir version we need to upgrade ecto as well and for this ecto_mnesia should support ecto3 version.

Hi, I found this project and thought I could use it in a project of mine if it was up to date. So I am thinking of updating it to...

Hello, I was wondering what the current status of the project is? I'd like to use it for more of my projects and i have used it already for some...

Whenever creating an Ecto.Multi that returns an error. (Such as by using `Ecto.Multi.error` or by returning `{:error, val}` rather than `{:ok, val}` from an `Ecto.Multi.run`), this is not properly passed...

Hello :wave:, I am having some trouble when deploying a Phoenix project using ecto_mnesia. My config is the following: ```elixir # config.exs use Mix.Config config :repository, Repository, adapter: EctoMnesia.Adapter config...

I wanted to use `MyApp.Repo.stream` to upgrade some rows in my tables to a format with new constraints (in this case: Giving all of them a UUID, since all newly-inserted...

I have the following schemas: ``` defmodule AnimeApi.Anime do use Ecto.Schema schema "animes" do field :title, :string field :url, :string has_many :themes, AnimeApi.Theme end end defmodule AnimeApi.Theme do use Ecto.Schema...

fixes ** (RuntimeError) trying to load string UUID as Ecto.UUID when using :binary_id

Hey, I migrated from `Amnesia` into `ecto_mnesia` because I felt that it's more convenient for a Phoenix project. So far as I looked at the code all the queries are...