defmodule MyFirstElixirVibeCode.Repo.Migrations.CreateClients do use Ecto.Migration def change do create table(:clients) do add :name, :string add :email, :string add :company_name, :string timestamps(type: :utc_datetime) end end end