不要怂,就是干,撸起袖子干!

You need to sign in or sign up before continuing.
Commit 47c4d247 by Alexander Sergyeyev Committed by Sushant

docs(instances): use TINYINT for rating (#9463)

1 parent efb1f2f4
Showing with 1 additions and 1 deletions
......@@ -23,7 +23,7 @@ Built instances will automatically get default values when they were defined&col
// first define the model
const Task = sequelize.define('task', {
title: Sequelize.STRING,
rating: { type: Sequelize.STRING, defaultValue: 3 }
rating: { type: Sequelize.TINYINT, defaultValue: 3 }
})
 
// now instantiate an object
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!