Skip to content

Instantly share code, notes, and snippets.

@koistya
Created May 21, 2017 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koistya/dd53966e233a8199f91ad3e185130bdd to your computer and use it in GitHub Desktop.
Save koistya/dd53966e233a8199f91ad3e185130bdd to your computer and use it in GitHub Desktop.
“camelCase” < = > “snake_case” conversion with PostgreSQL and Knex.js https://medium.com/p/956357872fe4
import db from './db';
const fields = ['id', 'email', 'is_admin'];
class User {
constructor(data) {
Object.assign(this, data);
}
static find(...where) {
return db.table('users')
.where(...where)
.select(...fields)
.then(rows => rows.map(row => new User(row));
}
}
export default User;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment