Skip to content

Instantly share code, notes, and snippets.

@wttj-tech
Created September 12, 2022 14:26
Show Gist options
  • Save wttj-tech/19087a317ee0887cdeeaa0a3d89f8911 to your computer and use it in GitHub Desktop.
Save wttj-tech/19087a317ee0887cdeeaa0a3d89f8911 to your computer and use it in GitHub Desktop.
defmodule User do
use Ecto.Schema
use EctoAnon.Schema
anon_schema [
:name,
:email
]
schema "users" do
field :name, :string
field :age, :integer
field :email, :string
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment