Current section
Files
Jump to
Current section
Files
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