Skip to content

Instantly share code, notes, and snippets.

@aleandros
Created March 22, 2017 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aleandros/135b8b53f259deb8935873d1c02c6819 to your computer and use it in GitHub Desktop.
Save aleandros/135b8b53f259deb8935873d1c02c6819 to your computer and use it in GitHub Desktop.
Ecto schema with defaults
defmodule MyApp.Bank do
use MyApp.Web, :model
schema "banks" do
field :name, :string
timestamps()
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment