Skip to content

Instantly share code, notes, and snippets.

@JemiloII
Last active August 29, 2015 14:02
Show Gist options
  • Save JemiloII/d0619eb8b932a70686a2 to your computer and use it in GitHub Desktop.
Save JemiloII/d0619eb8b932a70686a2 to your computer and use it in GitHub Desktop.
Attempt to make mongo have mysql like id
module.exports = {
autoPK: false,
attributes: {
id: {
type: 'integer',
primaryKey: true,
autoIncrement: true
}
}
};
@uncletammy
Copy link

module.exports = {
            autoPK: false, 
            attributes: {
                        blah: {
                        type: 'integer',
                        primaryKey: true,
                        autoIncrement: true
                        }
            }
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment