Skip to content

Commit 423ef5a

Browse files
Kelly PhamKelly Pham
Kelly Pham
authored and
Kelly Pham
committed
settingView: fixed conflict
2 parents 704b0a0 + 7964d40 commit 423ef5a

24 files changed

+2028
-188
lines changed

db/deleteAllTasks.sql

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DELETE FROM tasks WHERE parent_card_id = $1

db/deleteCard.sql

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DELETE FROM cards WHERE id = $1

db/editCard.sql

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
UPDATE cards
2+
SET title = $1
3+
WHERE id = $2

db/getAllCards2.sql

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SELECT * FROM cards WHERE parent_project_id = $1 ORDER BY id

db/getTasks.sql

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SELECT * FROM tasks WHERE parent_project_id = $1

0 commit comments

Comments
 (0)