It should be possible to specify UUID, BIGINT etc with custom name for primary key ```bash $ sequelize model:generate --name User --attributes ID:bigint:primary ``` ```js { type: Datatypes.BIGINT, primaryKey: true } ``` https://github.com/sequelize/cli/issues/356