jillo-bot/migrations/20231115140015_craftingStationCooldowns.js
2023-11-15 18:04:36 +03:00

22 lines
507 B
JavaScript

/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.up = function(knex) {
return knex.schema
.createTable('craftingStationCooldowns', table => {
table.string('station').notNullable();
table.string('user').notNullable();
table.timestamp('usedAt').notNullable();
});
};
/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.down = function(knex) {
return knex.schema
.dropTable('craftingStationCooldowns');
};