From 0df3e52bb9e1fc78f3a477fde2ea0ea43beda291 Mon Sep 17 00:00:00 2001 From: Nathan Hyde Date: Fri, 3 Aug 2018 12:27:42 -0700 Subject: [PATCH] Correct rake task name in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 946188b..b9fea68 100644 --- a/README.md +++ b/README.md @@ -73,15 +73,16 @@ which should output something like this: ```bash .... -rake audited:add_migration # Installs Sequel::Audited migration, but does not run it. +rake audited:migrate:install # Installs Sequel::Audited migration, but does not run it. .... ``` Run the sequel-audit rake task: ```bash -bundle exec rake audited:add_migration +bundle exec rake audited:migrate:install ``` + After this you can comment out the rake task in your Rakefile until you need to update. And then finally run db:migrate to update your DB. @@ -89,7 +90,6 @@ finally run db:migrate to update your DB. bundle exec rake db:migrate ``` - ### 3) Add the `:uuid` plugin You need to add the `:uuid` plugin to models as follows: