|
Lines 4476-4481
CREATE TABLE `reserves` (
Link Here
|
| 4476 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4476 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 4477 |
/*!40101 SET character_set_client = @saved_cs_client */; |
4477 |
/*!40101 SET character_set_client = @saved_cs_client */; |
| 4478 |
|
4478 |
|
|
|
4479 |
-- |
| 4480 |
-- Table structure for table `hold_cancellation_requests` |
| 4481 |
-- |
| 4482 |
|
| 4483 |
DROP TABLE IF EXISTS `hold_cancellation_requests`; |
| 4484 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
| 4485 |
/*!40101 SET character_set_client = utf8 */; |
| 4486 |
CREATE TABLE `hold_cancellation_requests` ( |
| 4487 |
`hold_cancellation_request_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique ID of the cancellation request', |
| 4488 |
`hold_id` int(11) NOT null COMMENT 'ID of the hold', |
| 4489 |
`creation_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Time and date the cancellation request was created', |
| 4490 |
PRIMARY KEY (`hold_cancellation_request_id`) |
| 4491 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 4492 |
/*!40101 SET character_set_client = @saved_cs_client */; |
| 4493 |
|
| 4479 |
-- |
4494 |
-- |
| 4480 |
-- Table structure for table `return_claims` |
4495 |
-- Table structure for table `return_claims` |
| 4481 |
-- |
4496 |
-- |
| 4482 |
- |
|
|