11 lines
245 B
Elixir
11 lines
245 B
Elixir
|
|
defmodule MyFirstElixirVibeCode.Repo.Migrations.AddDocumentsToReviews do
|
||
|
|
use Ecto.Migration
|
||
|
|
|
||
|
|
def change do
|
||
|
|
alter table(:reviews) do
|
||
|
|
add :municipal_registration_proof, :string
|
||
|
|
add :work_permit_proof, :string
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|