live_beats/lib/live_beats/media_library/text_segment.ex
Chris McCord a1c6c454f0 WIP
2023-03-09 09:29:22 -05:00

9 lines
153 B
Elixir

defmodule LiveBeats.MediaLibrary.TextSegment do
use Ecto.Schema
embedded_schema do
field :start_time, :float
field :text, :string
end
end