zoeys.computer/priv/repo/migrations/20241026223550_add_gists_info.exs
2024-10-26 21:41:22 -04:00

10 lines
188 B
Elixir

defmodule Zoeyscomputer.Repo.Migrations.AddGistsInfo do
use Ecto.Migration
def change do
alter table(:gists) do
add :title, :string
add :desc, :text
end
end
end