File size: 210 Bytes
3f219b5
f94adc3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
defmodule Medicode.Repo.Migrations.AddStatusToTranscriptions do
  use Ecto.Migration

  def change do
    alter table("transcriptions") do
      add :status, :integer, null: false, default: 0
    end
  end
end