In my Housing model, I have a sequelize association set up like this:
Housing.belongsTo(models.User, {as : Owner});
When adding the column to the model and Migrations file with this association, will the table be named "Owner" exactly as the Alias, or "OwnerId" since it links to the Id key of the User table?