diff options
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 |