Sequelize default id type

I would like to change automatically the id type for all tables for this definition :

id : {
  type : DataTypes.BIGINT.UNSIGNED,
  unique : true,
  autoIncrement : true,
  primaryKey : true
}

In the Sequelize doc there are options for general purposes.

But nothing on the default attributes, or on custom attributes to pass to every tables. Any idea ?