defmodule Medicode.Repo.Migrations.CreateCodeFeedbacks do use Ecto.Migration def change do create table(:code_feedbacks, primary_key: false) do add :id, :binary_id, primary_key: true add :text, :string add :code, :string add :response, :boolean end end end