mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-04 04:33:10 +00:00
Added Ability to add Due Dates to Cards
This commit is contained in:
parent
be1ddcb0ad
commit
8ef97bf854
8 changed files with 207 additions and 4 deletions
|
@ -42,10 +42,12 @@ model List {
|
|||
}
|
||||
|
||||
model Card {
|
||||
id String @id @default(uuid())
|
||||
id String @id @default(uuid())
|
||||
title String
|
||||
order Int
|
||||
description String? @db.Text
|
||||
description String? @db.Text
|
||||
dueDate DateTime?
|
||||
startedAt DateTime?
|
||||
|
||||
listId String
|
||||
list List @relation(fields: [listId], references: [id], onDelete: Cascade)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue