expect(User.attributes).toEqual({id:"INT NOT NULL auto_increment PRIMARY KEY",deletedAt:"DATETIME",updatedAt:"DATETIME NOT NULL",createdAt:"DATETIME NOT NULL"})
expect(User.attributes).toEqual({id:"INTEGER NOT NULL auto_increment PRIMARY KEY",deletedAt:"DATETIME",updatedAt:"DATETIME NOT NULL",createdAt:"DATETIME NOT NULL"})
})
it("underscores timestamps if underscored",function(){
expect(User.attributes).toEqual({id:"INT NOT NULL auto_increment PRIMARY KEY",deleted_at:"DATETIME",updated_at:"DATETIME NOT NULL",created_at:"DATETIME NOT NULL"})
expect(User.attributes).toEqual({id:"INTEGER NOT NULL auto_increment PRIMARY KEY",deleted_at:"DATETIME",updated_at:"DATETIME NOT NULL",created_at:"DATETIME NOT NULL"})