Added description to source (#124)

This commit is contained in:
Kieran
2024-03-25 20:40:09 -07:00
committed by GitHub
parent 42a418f79e
commit 7411177e7d
4 changed files with 30 additions and 0 deletions
@@ -0,0 +1,9 @@
defmodule Pinchflat.Repo.Migrations.AddDescriptionToSource do
use Ecto.Migration
def change do
alter table(:sources) do
add :description, :string
end
end
end