assert.eql(User.attributes,{id:"INT NOT NULL auto_increment PRIMARY KEY",deletedAt:"DATETIME",updatedAt:"DATETIME NOT NULL",createdAt:"DATETIME NOT NULL"})
assert.eql(User.attributes,{id:"INT NOT NULL auto_increment PRIMARY KEY",deletedAt:"DATETIME",updatedAt:"DATETIME NOT NULL",createdAt:"DATETIME NOT NULL"})
},
},
'timestamp columns should be camelcase if camelcase is passed':function(){
'timestamp columns should be camelcase if camelcase is passed':function(){
assert.eql(User.attributes,{id:"INT NOT NULL auto_increment PRIMARY KEY",deleted_at:"DATETIME",updated_at:"DATETIME NOT NULL",created_at:"DATETIME NOT NULL"})
assert.eql(User.attributes,{id:"INT NOT NULL auto_increment PRIMARY KEY",deleted_at:"DATETIME",updated_at:"DATETIME NOT NULL",created_at:"DATETIME NOT NULL"})