Added description to source (#124)

This commit is contained in:
Kieran
2024-03-25 15:40:09 -07:00
committed by GitHub
parent e051a37f0d
commit bf11cd0dd9
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