implement step 2 stuff

This commit is contained in:
2021-12-04 16:57:47 -05:00
parent d32dc8c2cb
commit 5de53e23ea
14 changed files with 121 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
defmodule Entendu.Repo.Migrations.AddServiceAndRecipientToLinks do
use Ecto.Migration
def change do
alter table(:links) do
add :recipient, :string
add :service, :string
end
end
end