From 956f03bef683ed0a7a774e787e0b89d01a1a9cad Mon Sep 17 00:00:00 2001 From: Adrian Gruntkowski Date: Tue, 24 Sep 2024 10:53:05 +0200 Subject: [PATCH] Add `notes` column to `users` table --- .../migrations/20240924085157_add_notes_to_users.exs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 priv/repo/migrations/20240924085157_add_notes_to_users.exs diff --git a/priv/repo/migrations/20240924085157_add_notes_to_users.exs b/priv/repo/migrations/20240924085157_add_notes_to_users.exs new file mode 100644 index 000000000000..d5981a9cc907 --- /dev/null +++ b/priv/repo/migrations/20240924085157_add_notes_to_users.exs @@ -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