Migration: Photo path for performers.

This commit is contained in:
codevictory
2021-05-23 20:46:58 +03:00
parent 1f9c228ebf
commit 4af5feec95

View File

@@ -0,0 +1,9 @@
defmodule Runosaari.Repo.Migrations.PerformerImages do
use Ecto.Migration
def change do
alter table("performers") do
add :photo_path, :string
end
end
end