44 lines
1.0 KiB
SQL
44 lines
1.0 KiB
SQL
--
|
|
-- Table structure for table `client_content`
|
|
--
|
|
|
|
CREATE TABLE `client_content` (
|
|
`id` int(11) NOT NULL,
|
|
`client_id` int(11) NOT NULL,
|
|
`content_id` int(11) NOT NULL,
|
|
`assigned_at` timestamp NOT NULL DEFAULT current_timestamp()
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
--
|
|
-- Indexes for dumped tables
|
|
--
|
|
|
|
--
|
|
-- Indexes for table `client_content`
|
|
--
|
|
ALTER TABLE `client_content`
|
|
ADD PRIMARY KEY (`id`),
|
|
ADD KEY `client_id` (`client_id`),
|
|
ADD KEY `content_id` (`content_id`);
|
|
|
|
--
|
|
-- AUTO_INCREMENT for dumped tables
|
|
--
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `client_content`
|
|
--
|
|
ALTER TABLE `client_content`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- Constraints for dumped tables
|
|
--
|
|
|
|
--
|
|
-- Constraints for table `client_content`
|
|
--
|
|
ALTER TABLE `client_content`
|
|
ADD CONSTRAINT `client_content_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
|
|
ADD CONSTRAINT `client_content_ibfk_2` FOREIGN KEY (`content_id`) REFERENCES `content` (`id`) ON DELETE CASCADE;
|