Files
gantt-app/svar-gantt-app/src/lib/db/schema.js
Bastien COIGNOUX f999b17150 Initial commit
2025-07-14 14:14:48 +02:00

10 lines
172 B
JavaScript

export const schema = {
tasks: {
id: 'string',
name: 'string',
estimation: 'number',
sprint: 'string',
status: 'string',
remaining: 'number'
}
}