From 710a751dcec3e9296d11f74c615cb66967fdbc44 Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Sun, 10 Jan 2021 12:12:00 -0300 Subject: [PATCH] doc: update --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dc969cb..fc51122 100644 --- a/README.md +++ b/README.md @@ -51,15 +51,15 @@ Add the following code on your `Gemfile` and run `bundle install`: gem 'rating' ``` -Run the following task to create a Rating migration: +Run the following task to create the Rating migration: -```bash +```sh rails g rating:install ``` Then execute the migrations to create the to create tables `rating_rates` and `rating_ratings`: -```bash +```sh rake db:migrate ```