From 5d4f20be17be9056e6deeea9eb41093e9640ca0a Mon Sep 17 00:00:00 2001 From: Manoj Sonawane Date: Thu, 11 Jul 2024 00:06:03 +0800 Subject: [PATCH] docs: Update confirmation.md to add missing migration steps (#736) * Update confirmation.md to add missing migration steps * Update confirmation.md --------- Co-authored-by: Zach Daniel --- documentation/tutorials/confirmation.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/documentation/tutorials/confirmation.md b/documentation/tutorials/confirmation.md index 78054d1..f00fe0e 100644 --- a/documentation/tutorials/confirmation.md +++ b/documentation/tutorials/confirmation.md @@ -56,6 +56,11 @@ defmodule MyApp.Accounts.User do end end ``` +Next we will have to generate and run migrations to add confirmed_at column to user resource + +```bash +mix ash.codegen account_confirmation +``` Next we will define our "sender" module using `Swoosh`: