15 lines
312 B
Elixir
15 lines
312 B
Elixir
defmodule RiverConnect.Repo.Migrations.CreateAudioMessages do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:audio_messages) do
|
|
add :user_id, :string
|
|
add :file_path, :string
|
|
add :duration_ms, :integer
|
|
add :status, :string
|
|
|
|
timestamps(type: :utc_datetime)
|
|
end
|
|
end
|
|
end
|