summaryrefslogtreecommitdiff
path: root/migrations/20170628234104_createTasks.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-07-19 00:50:05 +0200
committerJules Laplace <julescarbon@gmail.com>2017-07-19 00:50:05 +0200
commit64e8c03dea044752bf3f2f228462721fe565f950 (patch)
tree41b48b67f69979bfc97be166129ee41c8dcb0c7f /migrations/20170628234104_createTasks.js
parent11a70bc347587219b2ec7b63cf4a6ff69bb4199b (diff)
refactor all the worker stuff
Diffstat (limited to 'migrations/20170628234104_createTasks.js')
-rw-r--r--migrations/20170628234104_createTasks.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/migrations/20170628234104_createTasks.js b/migrations/20170628234104_createTasks.js
index acb2440..4c0e526 100644
--- a/migrations/20170628234104_createTasks.js
+++ b/migrations/20170628234104_createTasks.js
@@ -5,10 +5,10 @@ exports.up = function(knex, Promise) {
table.integer('job_id')
table.string('username')
table.boolean('completed')
- table.string('command')
+ table.string('tool')
table.integer('content_file_id')
table.integer('style_file_id')
- table.integer('result_file_id')
+ table.integer('output_file_id')
table.string('alpha')
table.string('iterations')
table.timestamps()