Current section
Files
Jump to
Current section
Files
priv/test_repo/migrations/20230514172658_create_car_table.exs
defmodule Traveller.TestRepo.Migrations.CreateCarTable do
use Ecto.Migration
def change do
create table :cars, primary_key: false do
add :company, :string
add :model, :string
add :id, :integer
end
end
end