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 | |
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 | |