# mykanban2 ## A lite weight KanBan Board ## Uses PHP, JavaScript, PDO with SQLite3 DB. ``` In the Index.html file, you can modify the assignee's: In assets/js/view/Kanban.js, you may modify the Columns: static columns() { return [ { id: 1, title: "Todo/Backlog" }, { id: 2, title: "Ready" }, { id: 3, title: "Work in Progress" }, { id: 4, title: "QA" }, { id: 5, title: "Completed" }, { id: 6, title: "Archived" } ]; } ```