We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
where to add prefixes to column?
var Person = db.define('person', { name : String // database column = col_name });
The text was updated successfully, but these errors were encountered:
I think what you're looking for is addressed in #488 (amongst other things). Hopefully it will be merged soon.
Sorry, something went wrong.
This should now be possible in master. See the wiki for details. A new official version will be released in the near future.
Basically you need to do:
var Person = db.define('person', { name : { type: 'text', mapsTo: 'col_name' } });
thank you very much.
v2.1.9: (#456, #375, #273, #495)
41ee165
No branches or pull requests
where to add prefixes to column?
The text was updated successfully, but these errors were encountered: