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