aboutsummaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20170209113547_create_audio_file.exs (renamed from priv/repo/migrations/20170124112342_create_audio_file.exs)2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20170124112342_create_audio_file.exs b/priv/repo/migrations/20170209113547_create_audio_file.exs
index 0fdac43..6f00b38 100644
--- a/priv/repo/migrations/20170124112342_create_audio_file.exs
+++ b/priv/repo/migrations/20170209113547_create_audio_file.exs
@@ -4,7 +4,7 @@ defmodule TheTranscriberBackend.Repo.Migrations.CreateAudioFile do
def change do
create table(:audio_file) do
add :audio_path, :string
- add :transcription_file_path, :string
+ add :audio_name, :string
add :audio_duration, :string
timestamps()