File size: 296 Bytes
3f219b5
165b349
 
 
5676fb5
 
165b349
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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