Skip to content

Commit

Permalink
Add note about floats to example
Browse files Browse the repository at this point in the history
  • Loading branch information
dxg committed Apr 25, 2014
1 parent 44d432b commit 79e7022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ orm.connect("mysql://username:password@host/database", function (err, db) {
var Person = db.define("person", {
name : String,
surname : String,
age : Number,
age : Number, // FLOAT
male : Boolean,
continent : [ "Europe", "America", "Asia", "Africa", "Australia", "Antartica" ], // ENUM type
photo : Buffer, // BLOB/BINARY

0 comments on commit 79e7022

Please sign in to comment.