Skip to main content

stored-data

--
-- Table structure for table `tbl_report_reason`
--

CREATE TABLE `tbl_report_reason` (
`id` int(11) NOT NULL,
`type` int(11) NOT NULL COMMENT '1- Comment, 2- Content',
`reason` varchar(255) NOT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;