mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-22 05:19:21 +00:00
10 lines
233 B
SQL
10 lines
233 B
SQL
-- 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`));
|