defmodule Chklst.Repo.Migrations.CreateOrgs do use Ecto.Migration def change do create table(:orgs, primary_key: false) do add :id, :binary_id, primary_key: true add :name, :string add :status, :string timestamps(type: :utc_datetime) end end end