Lines 423-428
CREATE TABLE `aqbooksellers` (
Link Here
|
423 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
423 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
424 |
/*!40101 SET character_set_client = @saved_cs_client */; |
424 |
/*!40101 SET character_set_client = @saved_cs_client */; |
425 |
|
425 |
|
|
|
426 |
-- |
427 |
-- Table structure for table `aqbookseller_aliases` |
428 |
-- |
429 |
|
430 |
DROP TABLE IF EXISTS `aqbookseller_aliases`; |
431 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
432 |
/*!40101 SET character_set_client = utf8 */; |
433 |
CREATE TABLE `aqbookseller_aliases` ( |
434 |
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key and unique identifier assigned by Koha', |
435 |
`vendor_id` int(11) NOT NULL COMMENT 'link to the vendor', |
436 |
`alias` varchar(255) NOT NULL COMMENT "the alias", |
437 |
PRIMARY KEY (`id`), |
438 |
CONSTRAINT `aqbookseller_aliases_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `aqbooksellers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE |
439 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
440 |
/*!40101 SET character_set_client = @saved_cs_client */; |
441 |
|
426 |
-- |
442 |
-- |
427 |
-- Table structure for table `aqbudgetborrowers` |
443 |
-- Table structure for table `aqbudgetborrowers` |
428 |
-- |
444 |
-- |
429 |
- |
|
|