rails g resource User name email token:string{6} bio:text
== Indeksy ==
rails g resource user name:index email:uniq token:string{6} bio:text
== Relacje ==
rails g resource article user:references subject body:text
rails g resource comment user:belongs_to article:belongs_to body:text