aboutsummaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170210150134_create_audio_file.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20170210150134_create_audio_file.exs')
-rw-r--r--priv/repo/migrations/20170210150134_create_audio_file.exs14
1 files changed, 14 insertions, 0 deletions
diff --git a/priv/repo/migrations/20170210150134_create_audio_file.exs b/priv/repo/migrations/20170210150134_create_audio_file.exs
new file mode 100644
index 0000000..6f00b38
--- /dev/null
+++ b/priv/repo/migrations/20170210150134_create_audio_file.exs
@@ -0,0 +1,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