diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-12-27 12:34:43 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-12-27 12:34:43 +0100 |
| commit | 1fac54a69a4fd21b28953f2073904cbd3aee8577 (patch) | |
| tree | dbdec9e6a436944524336252146cfbac191f3cd0 /migrations | |
| parent | c8752ee2552a96df1cc235107a3674602c2220bb (diff) | |
adding shader route
Diffstat (limited to 'migrations')
| -rw-r--r-- | migrations/20171225172732_setup.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migrations/20171225172732_setup.js b/migrations/20171225172732_setup.js index 430f778..3e25d90 100644 --- a/migrations/20171225172732_setup.js +++ b/migrations/20171225172732_setup.js @@ -1,7 +1,7 @@ exports.up = function(knex, Promise) { - return knex.schema.createTable('images', function (table) { + return knex.schema.createTable('plops', function (table) { table.increments(); table.string('url'); table.string('ip'); @@ -11,5 +11,5 @@ exports.up = function(knex, Promise) { }; exports.down = function(knex, Promise) { - return knex.schema.dropTable('images') + return knex.schema.dropTable('plops') }; |
