Getters don't exist after setting up associations with migrationshow to set model validation with sequelize in nodejs?Permission denied when connecting to sequelizeMany to many self reference in Sequelize in twitter like web-appConnecting Node VM to SQL VM on VPN AzureIf statement runs but condition is not metError: Cannot enqueue Handshake after already enqueuing a HandshakeUnhandled rejection SequelizeDatabaseError - stream csv to update databaseInvalid session token npm APISpecify Sequelize sqlite path on WindowsErrro created a soap client

Hail hit my roof. Do I need to replace it?

Can a UA Lore Mastery wizard use the Spell Secrets or Alchemical Casting features to modify spells cast through wands or staffs?

How many Jimmys can fit?

Why AI became applicable only after Nvidia's chips were available?

Pattern to deploy a smart contract from another one without spending twice the gas

Can you cast the Shape Water spell without an existing obvious pool of water?

Would a Nikon FG 20 film SLR camera take pictures without batteries?

What was the profession 芸者 (female entertainer) called in Germany?

Party going through airport security at separate times?

Found and corrected a mistake on someone's else paper -- praxis?

Users forgetting to regenerate PDF before sending it

What was the profession 芸者 (female entertainer) called in Russia?

What is the Last Digit in the Result of the given Expression?

Need a non-volatile memory IC with near unlimited read/write operations capability

Simple sharding of delimited files to more sophisticated

What does the multimeter dial do internally?

How do I separate enchants from items?

Is it better in terms of durability to remove card+battery or to connect to charger/computer via USB-C?

Why do airports remove/realign runways?

What do you call a situation where you have choices but no good choice?

What are the effects of abstaining from eating a certain flavor?

What exactly is a "murder hobo"?

Who buys a weak currency?

Why is a mixture of two normally distributed variables only bimodal if their means differ by at least two times the common standard deviation?



Getters don't exist after setting up associations with migrations


how to set model validation with sequelize in nodejs?Permission denied when connecting to sequelizeMany to many self reference in Sequelize in twitter like web-appConnecting Node VM to SQL VM on VPN AzureIf statement runs but condition is not metError: Cannot enqueue Handshake after already enqueuing a HandshakeUnhandled rejection SequelizeDatabaseError - stream csv to update databaseInvalid session token npm APISpecify Sequelize sqlite path on WindowsErrro created a soap client






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying to setup 1:n associations with sequelize. When I try to access the generated getter functions I get an error that they don't exist.



If have two objects with a 1:n association, I'm defining the models as followed



'use strict';
module.exports = (sequelize, DataTypes) =>
const Locations = sequelize.define('Locations',
owner: DataTypes.INTEGER,
latitude: DataTypes.DOUBLE,
longitude: DataTypes.DOUBLE
, );

Locations.associate = function(models)
// associations can be defined here
Locations.hasMany(models.LocationOpeningHours,
as: 'locationOpeningHours',
foreignKey: 'locationId',
sourceKey: 'id',
)
;
return Locations;
;



'use strict';
module.exports = (sequelize, DataTypes) =>
const LocationOpeningHours = sequelize.define('LocationOpeningHours',
locationId: DataTypes.INTEGER,
weekday: DataTypes.TINYINT,
hours: DataTypes.STRING
, );
LocationOpeningHours.associate = function(models)
// associations can be defined here
LocationOpeningHours.belongsTo(models.Locations,

as: 'locations',
foreignKey: 'id',
sourceKey: 'locationId',
)
;
return LocationOpeningHours;
;



What do you expect to happen?



 locations.findOne(where: id: locationId)
.then(location =>
location.getLocationOpeningHours()
.then(openingHours => log(openingHours))




I expect to see the locationOpeningHours for this location



What is actually happening?



I get the error:



TypeError: location.getLocationOpeningHours is not a function
at locations.findOne.then.location (/home/patric/WebstormProjects/beercoin-backend-nodejs/db/models/locationsmodel.js:765:26)
at tryCatcher (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/util.js:16:23)
at Promise._settlePromiseFromHandler (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:512:31)
at Promise._settlePromise (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:569:18)
at Promise._settlePromise0 (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:614:10)
at Promise._settlePromises (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:694:18)
at _drainQueueStep (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:138:12)
at _drainQueue (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:131:9)
at Async._drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:147:5)
at Immediate.Async.drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:17:14)
at runCallback (timers.js:810:20)
at tryOnImmediate (timers.js:768:5)
at processImmediate [as _immediateCallback] (timers.js:745:5)



Hope anyone can point me in the right direction










share|improve this question




























    0















    I'm trying to setup 1:n associations with sequelize. When I try to access the generated getter functions I get an error that they don't exist.



    If have two objects with a 1:n association, I'm defining the models as followed



    'use strict';
    module.exports = (sequelize, DataTypes) =>
    const Locations = sequelize.define('Locations',
    owner: DataTypes.INTEGER,
    latitude: DataTypes.DOUBLE,
    longitude: DataTypes.DOUBLE
    , );

    Locations.associate = function(models)
    // associations can be defined here
    Locations.hasMany(models.LocationOpeningHours,
    as: 'locationOpeningHours',
    foreignKey: 'locationId',
    sourceKey: 'id',
    )
    ;
    return Locations;
    ;



    'use strict';
    module.exports = (sequelize, DataTypes) =>
    const LocationOpeningHours = sequelize.define('LocationOpeningHours',
    locationId: DataTypes.INTEGER,
    weekday: DataTypes.TINYINT,
    hours: DataTypes.STRING
    , );
    LocationOpeningHours.associate = function(models)
    // associations can be defined here
    LocationOpeningHours.belongsTo(models.Locations,

    as: 'locations',
    foreignKey: 'id',
    sourceKey: 'locationId',
    )
    ;
    return LocationOpeningHours;
    ;



    What do you expect to happen?



     locations.findOne(where: id: locationId)
    .then(location =>
    location.getLocationOpeningHours()
    .then(openingHours => log(openingHours))




    I expect to see the locationOpeningHours for this location



    What is actually happening?



    I get the error:



    TypeError: location.getLocationOpeningHours is not a function
    at locations.findOne.then.location (/home/patric/WebstormProjects/beercoin-backend-nodejs/db/models/locationsmodel.js:765:26)
    at tryCatcher (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/util.js:16:23)
    at Promise._settlePromiseFromHandler (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:512:31)
    at Promise._settlePromise (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:569:18)
    at Promise._settlePromise0 (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:614:10)
    at Promise._settlePromises (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:694:18)
    at _drainQueueStep (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:138:12)
    at _drainQueue (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:131:9)
    at Async._drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:147:5)
    at Immediate.Async.drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:17:14)
    at runCallback (timers.js:810:20)
    at tryOnImmediate (timers.js:768:5)
    at processImmediate [as _immediateCallback] (timers.js:745:5)



    Hope anyone can point me in the right direction










    share|improve this question
























      0












      0








      0








      I'm trying to setup 1:n associations with sequelize. When I try to access the generated getter functions I get an error that they don't exist.



      If have two objects with a 1:n association, I'm defining the models as followed



      'use strict';
      module.exports = (sequelize, DataTypes) =>
      const Locations = sequelize.define('Locations',
      owner: DataTypes.INTEGER,
      latitude: DataTypes.DOUBLE,
      longitude: DataTypes.DOUBLE
      , );

      Locations.associate = function(models)
      // associations can be defined here
      Locations.hasMany(models.LocationOpeningHours,
      as: 'locationOpeningHours',
      foreignKey: 'locationId',
      sourceKey: 'id',
      )
      ;
      return Locations;
      ;



      'use strict';
      module.exports = (sequelize, DataTypes) =>
      const LocationOpeningHours = sequelize.define('LocationOpeningHours',
      locationId: DataTypes.INTEGER,
      weekday: DataTypes.TINYINT,
      hours: DataTypes.STRING
      , );
      LocationOpeningHours.associate = function(models)
      // associations can be defined here
      LocationOpeningHours.belongsTo(models.Locations,

      as: 'locations',
      foreignKey: 'id',
      sourceKey: 'locationId',
      )
      ;
      return LocationOpeningHours;
      ;



      What do you expect to happen?



       locations.findOne(where: id: locationId)
      .then(location =>
      location.getLocationOpeningHours()
      .then(openingHours => log(openingHours))




      I expect to see the locationOpeningHours for this location



      What is actually happening?



      I get the error:



      TypeError: location.getLocationOpeningHours is not a function
      at locations.findOne.then.location (/home/patric/WebstormProjects/beercoin-backend-nodejs/db/models/locationsmodel.js:765:26)
      at tryCatcher (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/util.js:16:23)
      at Promise._settlePromiseFromHandler (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:512:31)
      at Promise._settlePromise (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:569:18)
      at Promise._settlePromise0 (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:614:10)
      at Promise._settlePromises (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:694:18)
      at _drainQueueStep (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:138:12)
      at _drainQueue (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:131:9)
      at Async._drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:147:5)
      at Immediate.Async.drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:17:14)
      at runCallback (timers.js:810:20)
      at tryOnImmediate (timers.js:768:5)
      at processImmediate [as _immediateCallback] (timers.js:745:5)



      Hope anyone can point me in the right direction










      share|improve this question














      I'm trying to setup 1:n associations with sequelize. When I try to access the generated getter functions I get an error that they don't exist.



      If have two objects with a 1:n association, I'm defining the models as followed



      'use strict';
      module.exports = (sequelize, DataTypes) =>
      const Locations = sequelize.define('Locations',
      owner: DataTypes.INTEGER,
      latitude: DataTypes.DOUBLE,
      longitude: DataTypes.DOUBLE
      , );

      Locations.associate = function(models)
      // associations can be defined here
      Locations.hasMany(models.LocationOpeningHours,
      as: 'locationOpeningHours',
      foreignKey: 'locationId',
      sourceKey: 'id',
      )
      ;
      return Locations;
      ;



      'use strict';
      module.exports = (sequelize, DataTypes) =>
      const LocationOpeningHours = sequelize.define('LocationOpeningHours',
      locationId: DataTypes.INTEGER,
      weekday: DataTypes.TINYINT,
      hours: DataTypes.STRING
      , );
      LocationOpeningHours.associate = function(models)
      // associations can be defined here
      LocationOpeningHours.belongsTo(models.Locations,

      as: 'locations',
      foreignKey: 'id',
      sourceKey: 'locationId',
      )
      ;
      return LocationOpeningHours;
      ;



      What do you expect to happen?



       locations.findOne(where: id: locationId)
      .then(location =>
      location.getLocationOpeningHours()
      .then(openingHours => log(openingHours))




      I expect to see the locationOpeningHours for this location



      What is actually happening?



      I get the error:



      TypeError: location.getLocationOpeningHours is not a function
      at locations.findOne.then.location (/home/patric/WebstormProjects/beercoin-backend-nodejs/db/models/locationsmodel.js:765:26)
      at tryCatcher (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/util.js:16:23)
      at Promise._settlePromiseFromHandler (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:512:31)
      at Promise._settlePromise (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:569:18)
      at Promise._settlePromise0 (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:614:10)
      at Promise._settlePromises (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/promise.js:694:18)
      at _drainQueueStep (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:138:12)
      at _drainQueue (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:131:9)
      at Async._drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:147:5)
      at Immediate.Async.drainQueues (/home/patric/WebstormProjects/beercoin-backend-nodejs/node_modules/bluebird/js/release/async.js:17:14)
      at runCallback (timers.js:810:20)
      at tryOnImmediate (timers.js:768:5)
      at processImmediate [as _immediateCallback] (timers.js:745:5)



      Hope anyone can point me in the right direction







      node.js sequelize.js






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 22:48









      user3399276user3399276

      155 bronze badges




      155 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347486%2fgetters-dont-exist-after-setting-up-associations-with-migrations%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347486%2fgetters-dont-exist-after-setting-up-associations-with-migrations%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해