Ecto Models
Most web applications today need some form of data storage. In the Elixir ecosystem, we have Ecto to enable this. Ecto currently has adapters for the following databases:
- PostgreSQL
- MySQL
- MSSQL
- SQLite3
- MongoDB
Newly generated Phoenix applications integrate both Ecto and the PostgreSQL adapter by default.
For a thorough, general guide for Ecto, check out the Ecto getting started guide. For an overview of all Ecto specific mix tasks for Phoenix, see the mix tasks guide.
This guide assumes that we have generated our new application with Ecto. If we’re using an older Phoenix app, or we used the --no-ecto
option to generate our application, all is not lost. Please follow the instructions in the “Integrating Ecto into an Existing Application” section below.
This guide also assumes that we will be using PostgreSQL. For instructions on switching to MySQL, please see the Using MySQL Guide.
The default Postgres configuration has a superuser account with username ‘postgres’ and the password ‘postgres’. If you take a look at the file config/dev.exs
, you’ll see that Phoenix works off this assumption. If you don’t have this account already setup on your machine, you can connect to your postgres instance by typing psql
and enter the following commands:
CREATE USER postgres;
ALTER USER postgres PASSWORD 'postgres';
ALTER USER postgres WITH SUPERUSER;
Now that we all have Ecto and Postgres installed and configured, the easiest way to use Ecto models is to generate a resource through the phoenix.gen.html
task. Let’s generate a User
resource with name
, email
, bio
, and number_of_pets
fields.
$ mix phoenix.gen.html User users name:string email:string bio:string number_of_pets:integer
* creating priv/repo/migrations/20150409213440_create_user.exs
* creating web/models/user.ex
* creating test/models/user_test.exs
* creating web/controllers/user_controller.ex
* creating web/templates/user/edit.html.eex
* creating web/templates/user/form.html.eex
* creating web/templates/user/index.html.eex
* creating web/templates/user/new.html.eex
* creating web/templates/user/show.html.eex
* creating web/views/user_view.ex
* creating test/controllers/user_controller_test.exs
Add the resource to your browser scope in web/router.ex:
resources "/users", UserController
and then update your repository by running migrations:
$ mix ecto.migrate
Notice that we get a lot for free with this task - a migration, a controller, a controller test, a model, a model test, a view, and a number of templates.
Let’s follow the instructions the task gives us and insert the resources "/users", UserController
line in the router web/router.ex
.
defmodule HelloPhoenix.Router do
use HelloPhoenix.Web, :router
. . .
scope "/", HelloPhoenix do
pipe_through :browser # Use the default browser stack
get "/", PageController, :index
resources "/users", UserController
end
. . .
end
With the resource route in place, it’s time to run our migration.
$ mix ecto.migrate
Compiled lib/hello_phoenix.ex
Compiled web/models/user.ex
Compiled web/views/error_view.ex
Compiled web/controllers/page_controller.ex
Compiled web/views/page_view.ex
Compiled web/router.ex
Compiled web/views/layout_view.ex
Compiled web/controllers/user_controller.ex
Compiled lib/hello_phoenix/endpoint.ex
Compiled web/views/user_view.ex
Generated hello_phoenix.app
** (Postgrex.Error) FATAL (invalid_catalog_name): database "hello_phoenix_dev" does not exist
lib/ecto/adapters/sql/worker.ex:29: Ecto.Adapters.SQL.Worker.query!/4
lib/ecto/adapters/sql.ex:187: Ecto.Adapters.SQL.use_worker/3
lib/ecto/adapters/postgres.ex:58: Ecto.Adapters.Postgres.ddl_exists?/3
lib/ecto/migration/schema_migration.ex:19: Ecto.Migration.SchemaMigration.ensure_schema_migrations_table!/1
lib/ecto/migrator.ex:36: Ecto.Migrator.migrated_versions/1
lib/ecto/migrator.ex:134: Ecto.Migrator.run/4
(mix) lib/mix/cli.ex:55: Mix.CLI.run_task/2
Oops! This error message means that we haven’t created the database that Ecto expects by default. In our case, the database we need is called hello_phoenix_dev
- that is the name of our application with a _dev
suffix indicating that it is our development database.
Ecto has an easy way to do this. We just run the ecto.create
task.
$ mix ecto.create
The database for repo HelloPhoenix.Repo has been created.
Mix assumes that we are in the development environment unless we tell it otherwise with MIX_ENV=another_environment
. Our Ecto task will get its environment from Mix, and that’s how we get the correct suffix to our database name.
Now our migration should run more smoothly.
$ mix ecto.migrate
[info] == Running HelloPhoenix.Repo.Migrations.CreateUser.change/0 forward
[info] create table users
[info] == Migrated in 0.3s
Before we get too far into the details, let’s have some fun! We can start our server with mix phoenix.server
at the root of our project and then head to the users index page. We can click on “New user” to create new users, then show, edit, or delete them. By default, Ecto considers all of the fields on our model to be required. (We’ll see how to change that in a bit.) If we don’t provide some of them when creating or updating, we’ll see a nice error message telling us all of the fields we missed. Our resource generating task has given us a complete scaffold for manipulating user records in the database and displaying the results.
Ok, now back to the details.
If we log in to our database server, and connect to our hello_phoenix_dev
database, we should see our users
table. Ecto assumes that we want an integer column called id
as our primary key, so we should see a sequence generated for that as well.
=# \connect hello_phoenix_dev
You are now connected to database "hello_phoenix_dev" as user "postgres".
hello_phoenix_dev=# \d
List of relations
Schema | Name | Type | Owner
--------+-------------------+----------+----------
public | schema_migrations | table | postgres
public | users | table | postgres
public | users_id_seq | sequence | postgres
(3 rows)
If we take a look at the migration generated by phoenix.gen.html
in priv/repo/migrations
, we’ll see that it will add the columns we specified. It will also add timestamp columns for inserted_at
and updated_at
which come from the timestamps/0
function.
defmodule HelloPhoenix.Repo.Migrations.CreateUser do
use Ecto.Migration
def change do
create table(:users) do
add :name, :string
add :email, :string
add :bio, :string
add :number_of_pets, :integer
timestamps
end
end
end
And here’s what that translates to in the actual users
table.
hello_phoenix_dev=# \d users
Table "public.users"
Column | Type | Modifiers
----------------+-----------------------------+----------------------------------------------------
id | integer | not null default nextval('users_id_seq'::regclass)
name | character varying(255) |
email | character varying(255) |
bio | character varying(255) |
number_of_pets | integer |
inserted_at | timestamp without time zone | not null
updated_at | timestamp without time zone | not null
Indexes:
"users_pkey" PRIMARY KEY, btree (id)
Notice that we do get an id
column as our primary key by default, even though it isn’t listed as a field in our migration.
The Repo
Our HelloPhoenix.Repo
module is the foundation we need to work with databases in a Phoenix application. Phoenix generated it for us here lib/hello_phoenix/repo.ex
, and this is what it looks like.
defmodule HelloPhoenix.Repo do
use Ecto.Repo, otp_app: :hello_phoenix
end
Our repo has two main tasks - to bring in all the common query functions from Ecto.Repo
and to set the otp_app
name equal to our application name.
When phoenix.new
generated our application, it generated some basic configuration as well. Let’s look at config/dev.exs
.
. . .
# Configure your database
config :hello_phoenix, HelloPhoenix.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "hello_phoenix_dev"
. . .
It begins by configuring our otp_app
name and repo module. Then it sets the adapter - Postgres, in our case. It also sets our login credentials. Of course, we can change these to match our actual credentials if they are different.
We also have similar configuration in config/test.exs
and config/prod.secret.exs
which can also be changed to match our actual credentials.
The Model
Ecto models have several functions. Each model defines the fields of our schema as well as their types. They each define a struct with the same fields in our schema. Models are where we define relationships with other models. Our User
model might have many Post
models, and each Post
would belong to a User
. Models also handle data validation and type casting with changesets.
Here is the User
model that Phoenix generated for us.
defmodule HelloPhoenix.User do
use HelloPhoenix.Web, :model
schema "users" do
field :name, :string
field :email, :string
field :bio, :string
field :number_of_pets, :integer
timestamps()
end
@doc """
Builds a changeset based on the `struct` and `params`.
"""
def changeset(struct, params \\ %{}) do
struct
|> cast(params, [:name, :email, :bio, :number_of_pets])
|> validate_required([:name, :email, :bio, :number_of_pets])
end
end
The schema block at the top of the model should be pretty self-explanatory. We’ll take a look at changesets next.
Changesets and Validations
Changesets define a pipeline of transformations our data needs to undergo before it will be ready for our application to use. These transformations might include type casting, validation, and filtering out any extraneous parameters.
Let’s take a closer look at our default changeset.
def changeset(struct, params \\ %{}) do
struct
|> cast(params, [:name, :email, :bio, :number_of_pets])
|> validate_required([:name, :email, :bio, :number_of_pets])
end
Right now, we have two transformations in our pipeline to this model.
In the first call, we invoke cast/3
to send in our parameters and which fields are required for validation.
cast/3
first takes a struct, then the parameters (the proposed updates), and then the final field is the list of columns to be updated.
cast/3
also will only take fields that exist in the schema.
Next, validate_required/3
checks that this list of fields is present in the changeset that cast/3
returns.
By default with the generator, all fields are required.
Let’s take a look at two ways to validate that this is the case. The first and easiest way is to simply start our application by running the mix phoenix.server
task at the root of our project. Then we can go to the new users page and click the “submit” button without filling in any fields. We should get an error telling us that something went wrong and enumerating all the fields which can’t be blank. That should be all the fields in our schema at this point.
We can also verify this in iex. Let’s stop our server and start it again with iex -S mix phoenix.server
. In order to minimize typing and make this easier to read, let’s alias our HelloPhoenix.User
model.
iex(1)> alias HelloPhoenix.User
HelloPhoenix.User
Then let’s create a changeset from our model with an empty User
struct, and an empty map of parameters.
iex(2)> changeset = User.changeset(%User{}, %{})
#Ecto.Changeset<action: nil, changes: %{},
errors: [name: {"can't be blank", []}, email: {"can't be blank", []},
bio: {"can't be blank", []}, number_of_pets: {"can't be blank", []}],
data: #HelloPhoenix.User<>, valid?: false>
Once we have a changeset, we can ask it if it is valid.
iex(3)> changeset.valid?
false
Since this one is not valid, we can ask it what the errors are.
iex(4)> changeset.errors
[name: {"can't be blank", []}, email: {"can't be blank", []},
bio: {"can't be blank", []}, number_of_pets: {"can't be blank", []}]
It gives us the same list of fields that can’t be blank that we got from the front end of our application.
Let’s make number_of_pets
optional.
In order to do this, we simply remove it from the list.
|> validate_required([:name, :email, :bio])
Now either method of verification should tell us that only name
, email
, and bio
can’t be blank.
What happens if we pass a key/value pair that is in neither defined in the schema nor required?
In a new iex -S mix phoenix.server
session, we should alias our module again.
iex(1)> alias HelloPhoenix.User
HelloPhoenix.User
Lets create a params
map with valid values plus an extra random_key: "random value"
.
iex(2)> params = %{name: "Joe Example", email: "joe@example.com", bio: "An example to all", number_of_pets: 5, random_key: "random value"}
%{email: "joe@example.com", name: "Joe Example", bio: "An example to all",
number_of_pets: 5, random_key: "random value"}
Then let’s use our new params
map to create a changeset.
iex(3)> changeset = User.changeset(%User{}, params)
#Ecto.Changeset<action: nil,
changes: %{bio: "An example to all", email: "joe@example.com",
name: "Joe Example", number_of_pets: 5}, errors: [], data: #HelloPhoenix.User<>,
valid?: true>
Our new changeset is valid.
iex(4)> changeset.valid?
true
We can also check the changeset’s changes - the map we get after all of the transformations are complete.
iex(9)> changeset.changes
%{bio: "An example to all", email: "joe@example.com", name: "Joe Example",
number_of_pets: 5}
Notice that our random_key
and random_value
have been removed from our final changeset.
We can validate more than just whether a field is required or not. Let’s take a look at some finer-grained validations.
What if we had a requirement that all biographies in our system must be at least two characters long? We can do this easily by adding another transformation to the pipeline in our changeset which validates the length of the bio
field.
def changeset(struct, params \\ %{}) do
struct
|> cast(params, [:name, :email, :bio, :number_of_pets])
|> validate_required([:name, :email, :bio, :number_of_pets])
|> validate_length(:bio, min: 2)
end
Now if we try to add a new user through the front end of the application with a bio of “A”, we should see this error message at the top of the page.
Oops, something went wrong! Please check the errors below:
Bio should be at least 2 characters
If we also have a requirement for the maximum length that a bio can have, we can simply add another validation.
def changeset(struct, params \\ %{}) do
struct
|> cast(params, [:name, :email, :bio, :number_of_pets])
|> validate_required([:name, :email, :bio, :number_of_pets])
|> validate_length(:bio, min: 2)
|> validate_length(:bio, max: 140)
end
Now if we try to add a new user with a 141 character bio, we would see this error.
Oops, something went wrong! Please check the errors below:
Bio should be at most 140 characters
Let’s say we want to perform at least some rudimentary format validation on the email
field. All we want to check for is the presence of the “@”. The validate_format/3
function is just what we need.
def changeset(struct, params \\ %{}) do
struct
|> cast(params, [:name, :email, :bio, :number_of_pets])
|> validate_required([:name, :email, :bio, :number_of_pets])
|> validate_length(:bio, min: 2)
|> validate_length(:bio, max: 140)
|> validate_format(:email, ~r/@/)
end
If we try to create a user with an email of “personexample.com”, we should see an error message like the following.
Oops, something went wrong! Please check the errors below:
Email has invalid format
There are many more validations and transformations we can perform in a changeset. Please see the Ecto Changeset documentation for more information.
Controller Usage
At this point, let’s see how we can actually use Ecto in our application. Luckily, Phoenix gave us an example of this when we ran mix phoenix.gen.html
, the HelloPhoenix.UserController
.
Let’s work through the generated controller action by action to see how Ecto is used.
defmodule HelloPhoenix.UserController do
. . .
alias HelloPhoenix.User
. . .
end
We alias HelloPhoenix.User
so that we can name our structs %User{}
instead of %HelloPhoenix.User{}
.
On to our first action, index
.
def index(conn, _params) do
users = Repo.all(User)
render(conn, "index.html", users: users)
end
The whole purpose of this action is to get all of the users from the database and display them in the index.html.eex
template. We use the built-in Repo.all/1
query to do that, and we pass in the (aliased) model name. It’s that simple.
Notice that we do not use a changeset here. The assumption is that data will have to pass through a changeset in order to get into the database, so data coming out should already be valid.
Now, on to the new
action. Notice that we do use a changeset, even though we do not use any parameters when we create it. Essentially, we always create an empty changeset in this action. The reason for this is that new.html
can be rendered here, but it can also be rendered if we have invalid data in the create
action. The changeset will then contain errors that we need to display back to the user. We render new.html
with a changeset in both places for consistency.
def new(conn, _params) do
changeset = User.changeset(%User{})
render(conn, "new.html", changeset: changeset)
end
Once a user submits the form rendered from new.html
above, the form elements and their values will be posted as parameters to the create
action. This action shares some steps with the iex experiments that we did above.
def create(conn, %{"user" => user_params}) do
changeset = User.changeset(%User{}, user_params)
case Repo.insert(changeset) do
{:ok, _user} ->
conn
|> put_flash(:info, "User created successfully.")
|> redirect(to: user_path(conn, :index))
{:error, changeset} ->
render(conn, "new.html", changeset: changeset)
end
end
Notice that we get the user parameters by pattern matching with the "user"
key in the function signature. Then we create a changeset with those params and call Repo.insert/1
. If the changeset is valid, it will return {:ok, user}
with the inserted user model, then we set a flash message, and redirect to the index
action.
If insert errored, we re-render new.html
with the changeset to display the errors to the user.
In the show
action, we use the Repo.get!/2
built-in function to fetch the user record identified by the id we get from the request parameters. We don’t generate a changeset here because we assume that the data has passed through a changeset on the way in to the database, and therefore is valid when we retrieve it here.
This is the singular version of index
above.
def show(conn, %{"id" => id}) do
user = Repo.get!(User, id)
render(conn, "show.html", user: user)
end
In the edit
action, we use Ecto in a way which is a combination of show
and new
. We pattern match for the id
from the incoming params so that we can use Repo.get!/2
to retrieve the correct user from the database, as we did in show
. We also create a changeset from that user because when the user submits a PUT
request to update
, there might be errors, which we can track in the changeset when re-rendering edit.html
.
def edit(conn, %{"id" => id}) do
user = Repo.get!(User, id)
changeset = User.changeset(user)
render(conn, "edit.html", user: user, changeset: changeset)
end
The update
action is nearly identical to create
. The only difference is that we use Repo.update/1
instead of Repo.insert/1
. Repo.update/1
, when used with a changeset, keeps track of fields which have changed. If no fields have changed, Repo.update/1
won’t send any data to the database. Repo.insert/1
will always send all the data to the database.
def update(conn, %{"id" => id, "user" => user_params}) do
user = Repo.get!(User, id)
changeset = User.changeset(user, user_params)
case Repo.update(changeset) do
{:ok, user} ->
conn
|> put_flash(:info, "User updated successfully.")
|> redirect(to: user_path(conn, :show, user))
{:error, changeset} ->
render(conn, "edit.html", user: user, changeset: changeset)
end
end
Finally, we come to the delete
action. Here we also pattern match for the record id from the incoming params in order to use Repo.get!/2
to fetch the user. From there, we simply call Repo.delete!/1
, set a flash message, and redirect to the index
action.
Note: There is nothing in this generated code to allow a user to change their mind about the deletion. In other words, there is no “Are you sure?” modal, so an errant mouse click will delete data without further warning. It’s up to us as developers to add this in ourselves if we feel we need it.
def delete(conn, %{"id" => id}) do
user = Repo.get!(User, id)
# Here we use delete! (with a bang) because we expect
# it to always work (and if it does not, it will raise).
Repo.delete!(user)
conn
|> put_flash(:info, "User deleted successfully.")
|> redirect(to: user_path(conn, :index))
end
That’s the end of our walk-through of Ecto usage in our controller actions. There is quite a bit more that Ecto models can do. Please take a look at the Ecto documentation for the rest of the story.
Data Relationship and Dependencies
Suppose we are building a very simple video-sharing web application, in addition to having users on our site, we might also want to have videos. We asked Phoenix to scaffold a Video
model for us:
$ mix phoenix.gen.model Video videos name:string approved_at:datetime description:text likes:integer views:integer user_id:references:users
* creating priv/repo/migrations/20150611051558_create_video.exs
* creating web/models/video.ex
* creating test/models/video_test.exs
$ mix ecto.migrate
Handling individual tables is great, but if we want to build a modern web application, we will need a way to relate our data to each other. Those of us with experience using Ruby’s ActiveRecord will be glad to see that Ecto provides a very familiar API for building relationships. For example,
Schema.has_many/3
declares one to many relationships, for example, in our video sharing service, our user model might have many uploaded video models.
Schema.belongs_to/3
declares a one to one relationship between parent and children models. In our video site example, an uploaded video belongs to its user.
Schema.has_one/3
declares a one to one relationship. Note that has_one is just like has_many except instead of returning a collection of model structs, it returns only one model struct. Continuing with the video-sharing example, while a user might have many uploaded videos, the user might only have one featured video.
Here’s how we would declare a has_many
relationship in web/models/user.ex
:
defmodule HelloPhoenix.User do
. . .
schema "users" do
field :name, :string
field :email, :string
field :bio, :string
field :number_of_pets, :integer
has_many :videos, HelloPhoenix.Video
timestamps()
end
. . .
end
Since we used the generator to scaffold our Video
model and specified the user association with user_id:references:users
, the belongs_to
relationship will already be defined for us in web/models/video.ex
:
defmodule HelloPhoenix.Video do
. . .
schema "videos" do
field :name, :string
field :approved_at, Ecto.DateTime
field :description, :string
field :likes, :integer
field :views, :integer
belongs_to :user, HelloPhoenix.User
timestamps()
end
. . .
end
Note that we don’t declare the field user_id
in the video model schema. We add it to the required (or optional) field list instead.
We can use our newly declared relationships in our web/controllers/user_controller.ex
like this:
defmodule HelloPhoenix.UserController do
. . .
def index(conn, _params) do
users = User |> Repo.all |> Repo.preload([:videos])
render(conn, "index.html", users: users)
end
def show(conn, %{"id" => id}) do
user = User |> Repo.get!(id) |> Repo.preload([:videos])
render(conn, "show.html", user: user)
end
. . .
end
Because we declared a relationship in HelloPhoenix.User
, %User{}
will now contain a videos property which starts out as an unloaded relationship. In order to properly display it in render
, we’ll need to tell Ecto to preload the field. Note that Repo.preload/2
is smart enough to work on just one model or a collection of them.
Integrating Ecto into an Existing Application
Adding Ecto to an existing Phoenix application which wasn’t using it before is easy. Once we include Ecto and Postgrex as dependencies, there are mix tasks to help us.
Adding Ecto and Postgrex as Dependencies
We can add Ecto by way of the phoenix_ecto
package, and we can add the postgrex
package directly, just as we would add any other dependencies to our project.
defmodule HelloPhoenix.Mixfile do
use Mix.Project
. . .
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[{:phoenix, "~> 1.2.0"},
{:phoenix_ecto, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.6"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11",
{:cowboy, "~> 1.0"},]
end
end
We also need to explicitly append both :postgrex
and :phoenix_ecto
in the list of applications.
def application do
[mod: {HelloPhoenix, []},
applications: [:phoenix, :phoenix_pubsub, :phoenix_html, ... :postgrex, :phoenix_ecto]]
end
Then we run mix do deps.get, compile
to get them into our application.
$ mix do deps.get, compile
Running dependency resolution
Dependency resolution completed successfully
. . .
The next piece we need to add is our application’s repo. We can easily do that with the ecto.gen.repo -r HelloPhoenix.Repo
task.
$ mix ecto.gen.repo
* creating lib/hello_phoenix
* creating lib/hello_phoenix/repo.ex
* updating config/config.exs
Don't forget to add your new repo to your supervision tree
(typically in lib/hello_phoenix.ex):
supervisor(HelloPhoenix.Repo, [])
Note: Please see the “Repo” section above for information on what the repo does. We will follow the instructions for the supervisor setup below.
This task creates a directory for our repo as well as the repo itself.
defmodule HelloPhoenix.Repo do
use Ecto.Repo, otp_app: :hello_phoenix
end
It also adds this block of configuration to our config/config.exs
file. If we have different configuration options for different environments (which we should), we’ll need to add a block like this to config/dev.exs
, config/test.exs
, and config/prod.secret.exs
with the correct values.
. . .
config :hello_phoenix, HelloPhoenix.Repo,
adapter: Ecto.Adapters.Postgres,
database: "hello_phoenix_repo",
username: "user",
password: "pass",
hostname: "localhost"
We have to further enhance our config/config.exs
file by adding a new line which contains a list of ecto_repos
. Here we just add our newly generated HelloPhoenix.Repo
.
config :hello_phoenix, ecto_repos: [HelloPhoenix.Repo]
We should also make sure to listen to the output of ecto.gen.repo
and add our application repo as a child worker to our application’s supervision tree.
Let’s open up lib/hello_phoenix.ex
and do that by adding supervisor(HelloPhoenix.Repo, [])
to the list of children our application will start.
defmodule HelloPhoenix do
use Application
. . .
children = [
# Start the endpoint when the application starts
supervisor(HelloPhoenix.Endpoint, []),
# Start the Ecto repository
supervisor(HelloPhoenix.Repo, []),
# Here you could define other workers and supervisors as children
# worker(HelloPhoenix.Worker, [arg1, arg2, arg3]),
]
. . .
end
Now that Ecto is configured, we can use the mix tasks to generate models. By default all model files should have the line use HelloPhoenix.Web, :model
which handles the imports, but does not yet contain the Ecto
dependencies. We can define or append the model
function in the web/web.ex
file:
def model do
quote do
# Define common model functionality
use Ecto.Schema
import Ecto
import Ecto.Changeset
import Ecto.Query
end
end
At this point, we are completely configured and ready to go. We can go back to the top of this guide and follow along.