jillo-bot/migrations/20231127142531_roleSeperato...

22 lines
458 B
JavaScript

/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
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<void> }
*/
exports.down = function(knex) {
return knex.schema
.dropTable('roleSeperators');
};