medicode / priv /repo /migrations /20240116164032_create_code_feedbacks.exs
noahsettersten's picture
feat: Create `code_feedbacks` table and schema
165b349
raw
history blame
243 Bytes
defmodule MedicalTranscription.Repo.Migrations.CreateCodeFeedbacks do
use Ecto.Migration
def change do
create table(:code_feedbacks) do
add :text, :string
add :code, :string
add :response, :boolean
end
end
end