Added batch ID and better feedback to StashDB import tool.

This commit is contained in:
DebaucheryLibrarian
2026-01-26 02:14:18 +01:00
parent 40bb73e897
commit 36ba4542a6
2 changed files with 14 additions and 3 deletions

View File

@@ -42,6 +42,11 @@ exports.up = async (knex) => {
table.integer('source_submissions');
table.json('source_meta');
table.integer('batch_id')
.notNullable()
.references('id')
.inTable('batches');
table.datetime('source_created_at');
table.datetime('created_at')