/** * @param { import("knex").Knex } knex * @returns { Promise } */ exports.up = function(knex) { return knex.schema .createTable('roleSeperators', table => { table.string('guild'); table.string('role'); table.enum('type', ['color', 'pronoun']); }); }; /** * @param { import("knex").Knex } knex * @returns { Promise } */ exports.down = function(knex) { return knex.schema .dropTable('roleSeperators'); };