feat: add description field to dataset and update related components for dataset creation and editing
This commit is contained in:
@@ -6,6 +6,7 @@ import { dataset_entry } from './dataset_entry';
|
||||
export const dataset = sqliteTable('dataset', {
|
||||
id: integer('id').primaryKey({ autoIncrement: true }),
|
||||
name: text('name').notNull(),
|
||||
description: text('description'),
|
||||
createdAt: integer('created_at', { mode: 'timestamp' })
|
||||
.notNull()
|
||||
.default(sql`(unixepoch())`),
|
||||
|
||||
Reference in New Issue
Block a user