Created
September 12, 2022 14:26
-
-
Save wttj-tech/19087a317ee0887cdeeaa0a3d89f8911 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule User do | |
use Ecto.Schema | |
use EctoAnon.Schema | |
anon_schema [ | |
:name, | |
] | |
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