diff options
author | neodarz <neodarz@neodarz.net> | 2017-01-24 17:09:18 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-01-24 17:09:18 +0100 |
commit | 033d07a519bac03fdfd28ca15e09cc287e80fd14 (patch) | |
tree | d623a1806c64ad84d7c88b0762ae6eb26ed14ce0 /web/models | |
download | the_transcriber_backend-033d07a519bac03fdfd28ca15e09cc287e80fd14.tar.xz the_transcriber_backend-033d07a519bac03fdfd28ca15e09cc287e80fd14.zip |
Initial commit with non-functional pieces of code about file upload
Diffstat (limited to 'web/models')
-rw-r--r-- | web/models/audio_file.ex | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web/models/audio_file.ex b/web/models/audio_file.ex new file mode 100644 index 0000000..46cf05f --- /dev/null +++ b/web/models/audio_file.ex @@ -0,0 +1,21 @@ +defmodule TheTranscriberBackend.AudioFile do + use TheTranscriberBackend.Web, :model + + schema "audio_file" do + field :audio_path, :string + field :transcription_file_path, :string + field :audio_duration, :string + + timestamps() + end + + @doc """ + Builds a changeset based on the `struct` and `params`. + """ + + def changeset(struct, params \\ %{}) do + struct + |> cast(params, [:audio_path, :transcription_file_path, :audio_duration]) + |> validate_required([:audio_path, :transcription_file_path, :audio_duration]) + end +end |