Lines 2541-2546
CREATE TABLE `currency` (
Link Here
|
2541 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2541 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2542 |
/*!40101 SET character_set_client = @saved_cs_client */; |
2542 |
/*!40101 SET character_set_client = @saved_cs_client */; |
2543 |
|
2543 |
|
|
|
2544 |
-- |
2545 |
-- Table structure for table `deletedauth_header` |
2546 |
-- |
2547 |
|
2548 |
DROP TABLE IF EXISTS `deletedauth_header`; |
2549 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
2550 |
/*!40101 SET character_set_client = utf8 */; |
2551 |
CREATE TABLE `deletedauth_header` ( |
2552 |
`authid` bigint(20) unsigned NOT NULL AUTO_INCREMENT, |
2553 |
`authtypecode` varchar(10) NOT NULL DEFAULT '', |
2554 |
`datecreated` date DEFAULT NULL, |
2555 |
`modification_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
2556 |
`origincode` varchar(20) DEFAULT NULL, |
2557 |
`authtrees` longtext DEFAULT NULL, |
2558 |
`marc` blob DEFAULT NULL, |
2559 |
`linkid` bigint(20) DEFAULT NULL, |
2560 |
`marcxml` longtext NOT NULL, |
2561 |
PRIMARY KEY (`authid`), |
2562 |
KEY `origincode` (`origincode`) |
2563 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2564 |
/*!40101 SET character_set_client = @saved_cs_client */; |
2565 |
|
2544 |
-- |
2566 |
-- |
2545 |
-- Table structure for table `deletedbiblio` |
2567 |
-- Table structure for table `deletedbiblio` |
2546 |
-- |
2568 |
-- |
2547 |
- |
|
|