feat: add duration field to dataset entries and update related components for display and processing

This commit is contained in:
averel10
2026-03-13 11:11:16 +01:00
parent 03118c468a
commit 412d0f1cd0
7 changed files with 558 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ export const dataset_entry = sqliteTable('dataset_entry', {
fileName: text('file_name').notNull(),
dialect: text('dialect').notNull(),
iteration: integer('iteration').notNull(),
durationMs: integer('duration_ms'),
createdAt: integer('created_at', { mode: 'timestamp' })
.notNull()
.default(sql`(unixepoch())`),