Pagan Gazzard 758f3caa48 Update to @balena/lint 5.x
Change-type: patch
2020-05-15 12:08:42 +01:00

11 lines
257 B
JavaScript

exports.up = function (knex) {
return knex.schema.createTable('containerLogs', (table) => {
table.string('containerId');
table.integer('lastSentTimestamp');
});
};
exports.down = function () {
return Promise.reject(new Error('Not Implemented'));
};