-- Create report table
CREATE TABLE `comunic_reports` (
`id` INT NOT NULL,
`user_id` INT NOT NULL,
`target` VARCHAR(25) NOT NULL,
`target_id` INT NOT NULL,
`time` INT NOT NULL,
`comment` TEXT NULL,
PRIMARY KEY (`id`));