AppReports/migrations/00000-init.js

18 lines
312 B
JavaScript
Raw Normal View History

2020-07-29 20:56:03 +02:00
'use strict';
async function up (knex) {
await knex.schema.createTable ('log', (table) => {
table.increments ('id');
table.string ('app');
table.string ('message');
table.json ('data');
table.timestamp ('timestamp');
});
}
function down () {
// noop
}
module.exports = { up, down };