aboutsummaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170210150134_create_audio_file.exs
blob: 6f00b38bebff5318ae8d37334fc7b57489c07c44 (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 :audio_name, :string
      add :audio_duration, :string

      timestamps()
    end

  end
end