zoeys.computer/priv/repo/migrations/20241026223550_add_gists_info.exs

11 lines
188 B
Elixir
Raw Normal View History

2024-10-26 21:41:22 -04:00
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