react and ruby on rails code example
Example 1: ruby rails delete all of a model in console
user.destroy #For a single record
user.agents.destroy_all #For a collection
Example 2: new rails app with mysql
rails new app_name --skip-webpack-install --skip-javascript -d mysql