|
@@ -4,8 +4,8 @@ const db = require('knex')(config.database);
|
|
const migration = {};
|
|
const migration = {};
|
|
migration.start = async () => {
|
|
migration.start = async () => {
|
|
await db.schema.table('albums', table => {
|
|
await db.schema.table('albums', table => {
|
|
- table.dateTime('editedAt');
|
|
|
|
- table.dateTime('zipGeneratedAt');
|
|
|
|
|
|
+ table.integer('editedAt');
|
|
|
|
+ table.integer('zipGeneratedAt');
|
|
});
|
|
});
|
|
console.log('Migration finished! Now start lolisafe normally');
|
|
console.log('Migration finished! Now start lolisafe normally');
|
|
};
|
|
};
|