- CREATE TABLE todo_items_table (
- todo_item_id BIGINT NOT NULL AUTO_INCREMENT,
- todo_section_id BIGINT NOT NULL,
- user_id BIGINT NOT NULL,
- status BIGINT NOT NULL,
- title TEXT,
- assigned_to_id BIGINT DEFAULT -1,
- entered_date DATE,
- entered_time TIME,
- due_date DATE,
- due_time TIME,
- asap INT( 1 ),
- active INT( 1 ),
- PRIMARY KEY( todo_item_id ),
- INDEX( todo_item_id, todo_section_id, user_id )
- );