elixir-ecto
Installation
SKILL.md
Elixir Ecto Skill
Schema Design
Basic Schema Definition
Schema Structure:
defmodule MyApp.Accounts.User do
use Ecto.Schema
import Ecto.Changeset
@primary_key {:id, :binary_id, autogenerate: true}
@foreign_key_type :binary_id