jillo-bot/migrations/20240317202418_auditLog.js

22 lines
437 B
JavaScript

/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.up = function(knex) {
return knex.schema
.createTable('auditLogs', table => {
table.string('guild');
table.string('channel');
table.string('eventTypes');
});
};
/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.down = function(knex) {
return knex.schema
.dropTable('auditLogs');
};