fp/services/bright/priv/repo/migrations/20241229033144_create_strea...

14 lines
258 B
Elixir
Raw Normal View History

2025-01-03 14:45:35 +00:00
defmodule Bright.Repo.Migrations.CreateStreams do
use Ecto.Migration
def change do
create table(:streams) do
add :title, :string
add :notes, :string
add :date, :utc_datetime
timestamps(type: :utc_datetime)
end
end
end