fp/apps/bright/priv/repo/migrations/20241229033144_create_streams.exs
CJ_Clippy aa75c224fc
Some checks failed
ci / build (push) Failing after 23m29s
ci / Tests & Checks (push) Failing after 3m32s
move services/bright to apps/bright
2025-02-10 08:16:50 -08:00

14 lines
258 B
Elixir

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