fix wrong column names

pull/38/head
unknown 2019-02-04 16:35:12 -05:00
parent d55bedd01d
commit b01c46dbc7
3 changed files with 3 additions and 6 deletions

View File

@ -15,8 +15,7 @@ module.exports = {
id: {
type: 'number',
unique: true,
autoIncrement: true,
columnName: '_id'
autoIncrement: true
},
title: { type: 'string', required: true },
author: { type: 'string' },

View File

@ -28,8 +28,7 @@ module.exports = {
id: {
type: 'number',
unique: true,
autoIncrement: true,
columnName: '_id'
autoIncrement: true
},
// local, oauth2, etc
protocol: {

View File

@ -14,8 +14,7 @@ module.exports = {
id: {
type: 'number',
unique: true,
autoIncrement: true,
columnName: '_id'
autoIncrement: true
},
email: {
type: 'string',