generate – Ruby and Rails Blog https://rubyandrails.net This is where diamonds exists Tue, 10 Aug 2021 16:52:29 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.3 195321763 Rails Guide https://rubyandrails.net/forums/topic/rails-generate/ Tue, 03 Aug 2021 23:30:49 +0000 https://rubyandrails.net/forums/topic/rails-generate/
  • generate controller
    rails generate controller home index
    creates controller named home, and action page index.You can access the page by navigating to /home/index page
  • generate model
    rails generate model Article title:string text:text
    creates model Article with table named Articles, columns title, text
  • add routes to /config/routes.rb
    Add resources :articles
    this will create add needed connection and routes to the newly create model
  • Scaffolding
    rails generate scaffold name fieldname:type
    rails db:migrate
  • Undo Scaffolding
    rails db:rollback
    rails destroy scaffold Name_of_script
  • ]]>
    1067