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