mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-06-01 15:20:51 +00:00
11 lines
257 B
JavaScript
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'));
|
|
};
|