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

Commit 16b39c61 by Mick Hansen

Merge pull request #5575 from sobotklp/master

Added Sequelize.DATE(6) (MySQL) to docs
2 parents 4ae0663f ab74860a
Showing with 1 additions and 0 deletions
......@@ -107,6 +107,7 @@ Sequelize.DECIMAL // DECIMAL
Sequelize.DECIMAL(10, 2) // DECIMAL(10,2)
Sequelize.DATE // DATETIME for mysql / sqlite, TIMESTAMP WITH TIME ZONE for postgres
Sequelize.DATE(6) // DATETIME(6) for mysql 5.6.4+. Fractional seconds support with up to 6 digits of precision
Sequelize.DATEONLY // DATE without time.
Sequelize.BOOLEAN // TINYINT(1)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!