| @@ -0,0 +1,13 @@ | |||||
| exports.up = function(knex) { | |||||
| return knex.schema | |||||
| .createTable('Nothing', async function (table) { | |||||
| table.increments('id'); | |||||
| }) | |||||
| }; | |||||
| exports.down = function(knex) { | |||||
| return knex.schema | |||||
| .dropTable('Nothing') | |||||
| }; | |||||
| @@ -6,6 +6,6 @@ | |||||
| "methods": "GET,POST,DELETE,PATCH,PUT" | "methods": "GET,POST,DELETE,PATCH,PUT" | ||||
| }, | }, | ||||
| "env": { | "env": { | ||||
| "API_BASEURL": "http://localhost:8080/api/v1.0/" | |||||
| "API_BASEURL": "http://vapor.prelub.com/api/v1.0/" | |||||
| } | } | ||||
| } | } | ||||
| @@ -139,6 +139,19 @@ | |||||
| } | } | ||||
| }, | }, | ||||
| "db": {} | "db": {} | ||||
| }, | |||||
| "Nothing": { | |||||
| "columns": { | |||||
| "id": { | |||||
| "db": { | |||||
| "type": "increments", | |||||
| "primary": true, | |||||
| "unique": false, | |||||
| "nullable": false | |||||
| } | |||||
| } | |||||
| }, | |||||
| "db": {} | |||||
| } | } | ||||
| }, | }, | ||||
| "views": {} | "views": {} | ||||
| @@ -6,6 +6,6 @@ | |||||
| "methods": "GET,POST,DELETE,PATCH,PUT" | "methods": "GET,POST,DELETE,PATCH,PUT" | ||||
| }, | }, | ||||
| "env": { | "env": { | ||||
| "API_BASEURL": "http://localhost:8080/api/v1.0/" | |||||
| "API_BASEURL": "http://vapor.prelub.com/api/v1.0/" | |||||
| } | } | ||||
| } | } | ||||