mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-06-01 07:10:48 +00:00
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
// Adds a dockerImageId column to the image table to identify images downloaded with deltas
|
|
exports.up = function (knex) {
|
|
return knex.schema.table('image', (t) => {
|
|
t.string('dockerImageId');
|
|
});
|
|
};
|
|
|
|
exports.down = function () {
|
|
return Promise.reject(new Error('Not implemented'));
|
|
};
|