aboutsummaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170124112342_create_audio_file.exs
blob: 0fdac436eeb4b89201e68411439edcac2e4244ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
defmodule TheTranscriberBackend.Repo.Migrations.CreateAudioFile do
  use Ecto.Migration

  def change do
    create table(:audio_file) do
      add :audio_path, :string
      add :transcription_file_path, :string
      add :audio_duration, :string

      timestamps()
    end

  end
end