Packages

Traverse database tables simply and efficiently

Current section

Files

Jump to
traveller priv test_repo migrations 20230509174744_create_people_table.exs
Raw

priv/test_repo/migrations/20230509174744_create_people_table.exs

defmodule Traveller.TestRepo.Migrations.CreatePeopleTable do
use Ecto.Migration
def change do
create table :people do
add :first_name, :string
add :last_name, :string
add :age, :integer
timestamps()
end
end
end