ecto-database

Installation
SKILL.md

Ecto Database Patterns

Schema Definition

Define schemas with proper types and associations.

defmodule MyApp.Media.Image do
  use Ecto.Schema
  import Ecto.Changeset

  schema "images" do
    field :title, :string
    field :description, :string
    field :filename, :string
    field :file_path, :string
    field :content_type, :string
    field :file_size, :integer
Installs
4
GitHub Stars
145
First Seen
Jan 29, 2026
ecto-database — j-morgan6/elixir-claude-optimization