Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 298 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 298 Bytes

CRUDPracticeRails

Snippets

Scaffolding models

Creates model, controller and view with basic CRUD functionality

bin/rails generate scaffold person username firstname lastname password

`

Create a model

bin/rails generate model Article title:string body:text