Skip to content

Instantly share code, notes, and snippets.

@developerworks
Created March 9, 2015 18:03
Show Gist options
  • Save developerworks/c9aeb8e15c135b132693 to your computer and use it in GitHub Desktop.
Save developerworks/c9aeb8e15c135b132693 to your computer and use it in GitHub Desktop.
defmodule UserSystem.User do
use Ecto.Model
schema "user" do
field :username, :string
field :first_name, :string
field :last_name, :string
field :email, :string
timestamps
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment