diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-29 00:26:39 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-29 00:26:39 +0200 |
| commit | f82d95c5f5b589bec0fc503c86f9e644b07b4ddd (patch) | |
| tree | 122b7fdac2598b0b4e9c1d32abf9c72f021b83cf /migrations/20170628233706_createJobs.js | |
| parent | a77ddf4bf8ad8aeb91e2109a7c4a92149928b57b (diff) | |
create datasets model
Diffstat (limited to 'migrations/20170628233706_createJobs.js')
| -rw-r--r-- | migrations/20170628233706_createJobs.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/migrations/20170628233706_createJobs.js b/migrations/20170628233706_createJobs.js deleted file mode 100644 index 4b17c6f..0000000 --- a/migrations/20170628233706_createJobs.js +++ /dev/null @@ -1,15 +0,0 @@ - -exports.up = function(knex, Promise) { - return knex.schema.createTable('jobs', function (table) { - table.increments() - table.string('name') - table.string('username') - table.boolean('completed') - table.string('tool') - table.timestamps() - }) -}; - -exports.down = function(knex, Promise) { - return knex.schema.dropTable('jobs') -}; |
