data/migrations/20210128221536_add_achievements_table.js
exports.up = function(knex) {
return knex.schema.createTable('Achievements', table=>{
table.increments('ID');
table.string('Name').unsigned();
table.string('Description').unsigned()
})
};
exports.down = function(knex) {
return knex.schema
.dropTableIfExists('Achievements')
};