doc: update

main
Washington Botelho 2021-01-10 12:12:00 -03:00
parent 4e67b70d29
commit 710a751dce
No known key found for this signature in database
GPG Key ID: 5DE4F42A8F073617
1 changed files with 3 additions and 3 deletions

View File

@ -51,15 +51,15 @@ Add the following code on your `Gemfile` and run `bundle install`:
gem 'rating' 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 rails g rating:install
``` ```
Then execute the migrations to create the to create tables `rating_rates` and `rating_ratings`: Then execute the migrations to create the to create tables `rating_rates` and `rating_ratings`:
```bash ```sh
rake db:migrate rake db:migrate
``` ```