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

Commit 33a07c6e by Damian Bushong Committed by Sushant

Remove documentation regarding column comments (#7753)

Column comments are not a currently supported feature and should not possess documentation references.

Documentation should be readded when the feature is supported once again; until then, the documentation is inaccurate and misleading to users.
1 parent e135c6fe
Showing with 0 additions and 3 deletions
...@@ -49,9 +49,6 @@ const Foo = sequelize.define('foo', { ...@@ -49,9 +49,6 @@ const Foo = sequelize.define('foo', {
// autoIncrement can be used to create auto_incrementing integer columns // autoIncrement can be used to create auto_incrementing integer columns
incrementMe: { type: Sequelize.INTEGER, autoIncrement: true }, incrementMe: { type: Sequelize.INTEGER, autoIncrement: true },
// Comments can be specified for each field for MySQL and PG
hasComment: { type: Sequelize.INTEGER, comment: "I'm a comment!" },
// You can specify a custom field name via the "field" attribute: // You can specify a custom field name via the "field" attribute:
fieldWithUnderscores: { type: Sequelize.STRING, field: "field_with_underscores" }, fieldWithUnderscores: { type: Sequelize.STRING, field: "field_with_underscores" },
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!