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
I'm getting the following error:
{ [error: relation "User" does not exist] name: 'error', length: 95, severity: 'ERROR', code: '42P01', detail: undefined, hint: undefined, position: '13', internalPosition: undefined, internalQuery: undefined, where: undefined, file: 'parse_relation.c', line: '873', routine: 'parserOpenTable' }
When I try to create the following table (it does not exist in the DB yet):
var User = database.define({'User', { username: {type: String} });
I read this bug had been fixed, so maybe there's something I'm missing.
The text was updated successfully, but these errors were encountered:
Postgres is case sensitive. Adding the table name should fix it.
var User = database.define({'User', { username: {type: String} }, { table:'user' });
Sorry, something went wrong.
No branches or pull requests
I'm getting the following error:
When I try to create the following table (it does not exist in the DB yet):
I read this bug had been fixed, so maybe there's something I'm missing.
The text was updated successfully, but these errors were encountered: