Updated source's friendly_name to default to the collection_name (#29)

This commit is contained in:
Kieran
2024-02-20 14:24:47 -08:00
committed by GitHub
parent 47f0fd533f
commit 94f777d1ed
9 changed files with 101 additions and 3 deletions
@@ -0,0 +1,13 @@
defmodule Pinchflat.Repo.Migrations.AddNotNullToFriendlyName do
use Ecto.Migration
def change do
alter table(:sources) do
remove :friendly_name, :string
end
alter table(:sources) do
add :friendly_name, :string, null: false
end
end
end