36716-vm/db/migrations/032_create_package_content_table.sql
2025-12-07 05:00:42 +00:00

44 lines
1.0 KiB
SQL

--
-- Table structure for table `package_content`
--
CREATE TABLE `package_content` (
`id` int(11) NOT NULL,
`package_id` int(11) NOT NULL,
`content_id` int(11) NOT NULL,
`delay_days` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `package_content`
--
ALTER TABLE `package_content`
ADD PRIMARY KEY (`id`),
ADD KEY `package_id` (`package_id`),
ADD KEY `content_id` (`content_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `package_content`
--
ALTER TABLE `package_content`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `package_content`
--
ALTER TABLE `package_content`
ADD CONSTRAINT `package_content_ibfk_1` FOREIGN KEY (`package_id`) REFERENCES `service_packages` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `package_content_ibfk_2` FOREIGN KEY (`content_id`) REFERENCES `content` (`id`) ON DELETE CASCADE;