1defmodule Friends.Repo.Migrations.CreatePeople do
2  use Ecto.Migration
3
4  def change do
5    create table(:people) do
6      add :first_name, :string
7      add :last_name, :string
8      add :age, :integer
9    end
10  end
11end
12