Created
August 20, 2012 14:22
-
-
Save takipone/3404684 to your computer and use it in GitHub Desktop.
Scaffold commands
This file contains 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 article name:string host_name:string enable:boolean note:text | |
rails g scaffold schedule name:string code:string description:text enable:boolean note:text start_date:datetime end_date:datetime schedule_type:references entry:integer | |
rails g scaffold articles_schedules artcle:references schedule:references --id=false --timestamps=false | |
rails g scaffold schedule_type name:string color:string enable:boolean note:text | |
rake db:migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment