- Add showTaskCheckboxes field to User model in Prisma schema - Create database migration for the new field - Update user profile API to handle the new setting - Implement checkbox rendering in GridTaskBlock controlled by user preference - Add CSS styles for task checkboxes
3 lines
143 B
SQL
3 lines
143 B
SQL
-- AlterTable: Add showTaskCheckboxes setting
|
|
ALTER TABLE "User" ADD COLUMN IF NOT EXISTS "showTaskCheckboxes" BOOLEAN NOT NULL DEFAULT false;
|