Updated source's friendly_name to default to the collection_name (#29)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user