aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2019-03-17 12:07:34 -0400
committerMark Powers <markppowers0@gmail.com>2019-03-17 12:07:34 -0400
commitc30218c68330f1dbcca99983f2f7f7d5274b1832 (patch)
tree24608ea8298ef2964153ad4924f1639424d5fb07 /src/index.js
parent13407c1acdf6a8c8893c78f2c1959e7ac8752b20 (diff)
Fix request logging bug
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 1a78436..3a0573e 100644
--- a/src/index.js
+++ b/src/index.js
@@ -70,7 +70,7 @@ function setUpModels(){
allowNull: false,
},}),
"requests": database.define('requests', {
- cookie: Sequelize.STRING,
+ session: Sequelize.STRING,
method: Sequelize.STRING,
url: Sequelize.STRING,
})