Last active
December 16, 2015 09:28
-
-
Save leemour/5412948 to your computer and use it in GitHub Desktop.
Rails generations examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rails g scaffold Page slug:string title:string parent_id:integer content:text excerpt:string seo_title:string seo_desc:string seo_keys:string | |
rails g scaffold Product slug:string brand:references name:string type:string price:integer options:text features:text design:text description:text slogan:string | |
rails g scaffold Brand name:string country:string slogan:string description:text logo:string image:string flag:string | |
rails g scaffold Category slug:string name:string description:text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment