sql >> Base de Datos >  >> RDS >> Mysql

Sequelize.js clave externa

Antes tuve el mismo problema, y ​​lo resolví cuando entendí el funcionamiento de la configuración de Sequelize.

¡Directo al grano!

Supongamos que tenemos dos objetos:Persona y Padre

var Person = sequelize.define('Person', {

        name: Sequelize.STRING
});

var Father = sequelize.define('Father', {

        age: Sequelize.STRING,
        //The magic start here
        personId: {
              type: Sequelize.INTEGER,
              references: 'persons', // <<< Note, its table's name, not object name
              referencesKey: 'id' // <<< Note, its a column name
        }
});

Person.hasMany(Father); // Set one to many relationship

Tal vez te ayude

Editar:

Puedes leer esto para entender mejor:

http://docs.sequelizejs.com/manual/tutorial/associations .html#claves-foráneas