Add notes column to users table (#4612)

This commit is contained in:
Adrian Gruntkowski
2024-09-25 16:21:26 +02:00
committed by GitHub
parent 6981972617
commit e11fd159df

View File

@ -0,0 +1,9 @@
defmodule Plausible.Repo.Migrations.AddNotesToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :notes, :text
end
end
end