medicode / priv /repo /migrations /20240116164032_create_code_feedbacks.exs
timgremore's picture
chore: Rename app to Medicode
3f219b5
raw
history blame
No virus
296 Bytes
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