'use strict'; exports.up = function(knex, Promise) { return knex.table("storage_volumes", (table) => { table.increments("id"); table.integer("instanceId"); table.uuid("volumeUuid").notNullable(); table.enum("format", ["qcow2"]).notNullable(); }) }; exports.down = function(knex, Promise) { };