Add notes column to users table

This commit is contained in:
Adrian Gruntkowski 2024-09-24 10:53:05 +02:00
parent 09c74ee0b3
commit 956f03bef6

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