blob: cd4ac55f5ae579554f7767a3956245efd483b78a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
exports.up = async knex => {
await knex.schema.createTable('settings', table => {
table.string('key');
table.string('value');
});
};
exports.down = async knex => {
await knex.schema.dropTableIfExists('settings');
};
|