system/dbd/sql/mysql/schema/system_todo_assign.sql

8 lines
170 B
SQL

CREATE TABLE `system_todo_assign` (
`todo` INT(10) NOT NULL,
`user` INT(10) UNSIGNED NOT NULL,
PRIMARY KEY (`todo`, `user`)
)
COLLATE='utf8_unicode_ci'
ENGINE=InnoDB
;