For future reference, this is the way I create models with rails generators:
ruby script/generate model cspayment payment_date:date amount:integer memo:string check_number:integer cashed_data:date
Check out these Simple Rails 3 Generator Examples too.
