The docs simply say "or define custom schema (non-juggling), for example, mongoose. Please note, in case of custom schema all jugglingdb features of course will be disabled."
However..
Where exactly should this schema be created?
|
The docs simply say "or define custom schema (non-juggling), for example, mongoose. Please note, in case of custom schema all jugglingdb features of course will be disabled." However.. Where exactly should this schema be created? |
|||
|
|
|
I believe you can still create it inside db/schema.js. For example:
|
|||||||
|
|
I was having similar issues with getting the customSchema example above to work. I think this little tip might be a huge time-saver for others trying to use railwayjs customschemas. After I put a After much fiddling around I realized that within your So in summary, if you want to run customSchema, make sure your config/database.json file looks something like this:
your customSchema WILL NOT work if you have something like this:
at least as of this writing... railwayjs is still under development so I'm sure things might change. I'm using ** one more caveat - if you remove 'jugglingdb' - which is the ORM that is packaged with railway - from your node_modules folder then customSchema will not be invoked. I believe this is because 'jugglingdb' is tightly integrated into the railwaysjs framework. The rationale, I guess, is that the author of the framework was trying to mimic ruby-on-rails - which we know is tightly integrated with activeRecord. So even if you are not using jugglingdb and are running your own custom schema's (say through mongoose or some other ORM), don't remove jugglingdb. I've logged a bug for this: https://github.com/1602/express-on-railway/issues/212 |
||||
|
|