Skip to content

Commit

Permalink
fix sqlize model bug:
Browse files Browse the repository at this point in the history
  • Loading branch information
bugall committed Nov 9, 2015
1 parent 04f781a commit 9368662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/mysql/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var Objects = DbSequelize.define("tbl_object",{
"c_code": { type: Sequelize.CHAR(1000)},
"status": { type: Sequelize.CHAR(5000)},
"label": { type: Sequelize.CHAR(100)},
"is_public": { type: Sequelize.CHAR(2)},
"is_public": { type: Sequelize.INTEGER},
"user_id":{type:Sequelize.INTEGER},
"delete":{type:Sequelize.CHAR(2)},
},{
Expand Down

0 comments on commit 9368662

Please sign in to comment.