|
Lines 4493-4498
CREATE TABLE `reserves` (
Link Here
|
| 4493 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4493 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 4494 |
/*!40101 SET character_set_client = @saved_cs_client */; |
4494 |
/*!40101 SET character_set_client = @saved_cs_client */; |
| 4495 |
|
4495 |
|
|
|
4496 |
-- |
| 4497 |
-- Table structure for table `hold_cancellation_requests` |
| 4498 |
-- |
| 4499 |
|
| 4500 |
DROP TABLE IF EXISTS `hold_cancellation_requests`; |
| 4501 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
| 4502 |
/*!40101 SET character_set_client = utf8 */; |
| 4503 |
CREATE TABLE `hold_cancellation_requests` ( |
| 4504 |
`hold_cancellation_request_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique ID of the cancellation request', |
| 4505 |
`hold_id` int(11) NOT null COMMENT 'ID of the hold', |
| 4506 |
`creation_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Time and date the cancellation request was created', |
| 4507 |
PRIMARY KEY (`hold_cancellation_request_id`) |
| 4508 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 4509 |
/*!40101 SET character_set_client = @saved_cs_client */; |
| 4510 |
|
| 4496 |
-- |
4511 |
-- |
| 4497 |
-- Table structure for table `return_claims` |
4512 |
-- Table structure for table `return_claims` |
| 4498 |
-- |
4513 |
-- |
| 4499 |
- |
|
|