レールで一意のキーはどのように生成されますか?
私は言う仕様を持っていますThe backend will have a relational DB, with one table with the following schema: "user : string, password : string, count : int", with user enforced to be non-empty, a unique key.
私が使用する場合、それは意味します
rails generate scaffold UserModel user:string password:string count:int
一意のキーが生成されますか? デフォルトで空でない要件がありますか?
または私は必要でしょうか
rails generate scaffold UserModel user:string password:string count:int unique_key int