|
Lines 211-216
CREATE TABLE `additional_contents` (
Link Here
|
| 211 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
211 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 212 |
/*!40101 SET character_set_client = @saved_cs_client */; |
212 |
/*!40101 SET character_set_client = @saved_cs_client */; |
| 213 |
|
213 |
|
|
|
214 |
-- |
| 215 |
-- Table structure for table `additional_contents_localizations` |
| 216 |
-- |
| 217 |
|
| 218 |
DROP TABLE IF EXISTS `additional_contents_localizations`; |
| 219 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
| 220 |
/*!40101 SET character_set_client = utf8 */; |
| 214 |
CREATE TABLE `additional_contents_localizations` ( |
221 |
CREATE TABLE `additional_contents_localizations` ( |
| 215 |
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for the additional content', |
222 |
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for the additional content', |
| 216 |
`additional_content_id` int(10) unsigned NOT NULL COMMENT 'link to the additional content', |
223 |
`additional_content_id` int(10) unsigned NOT NULL COMMENT 'link to the additional content', |
| 217 |
- |
|
|