zoeys.computer/priv/repo/migrations/20241027005245_gists_author_field.exs

10 lines
205 B
Elixir
Raw Normal View History

2024-10-26 21:41:22 -04:00
defmodule Zoeyscomputer.Repo.Migrations.GistsAuthorField do
use Ecto.Migration
def change do
alter table(:gists) do
add :author_id, references(:users, on_delete: :nothing)
end
end
end