oss_upload_channel.sql 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. -- MySQL dump 10.13 Distrib 5.7.42, for Linux (x86_64)
  2. --
  3. -- Host: 192.168.0.210 Database: reghao_bnt_tdb
  4. -- ------------------------------------------------------
  5. -- Server version 5.7.36
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. /*!40101 SET NAMES utf8 */;
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  11. /*!40103 SET TIME_ZONE='+00:00' */;
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  16. --
  17. -- Table structure for table `oss_upload_channel`
  18. --
  19. DROP TABLE IF EXISTS `oss_upload_channel`;
  20. /*!40101 SET @saved_cs_client = @@character_set_client */;
  21. /*!40101 SET character_set_client = utf8 */;
  22. CREATE TABLE `oss_upload_channel` (
  23. `id` int(11) NOT NULL AUTO_INCREMENT,
  24. `create_time` datetime(6) NOT NULL,
  25. `deleted` bit(1) NOT NULL,
  26. `update_time` datetime(6) NOT NULL,
  27. `create_by` int(11) DEFAULT NULL,
  28. `file_type` int(11) DEFAULT NULL,
  29. `max_size` bigint(20) DEFAULT NULL,
  30. `name` varchar(255) DEFAULT NULL,
  31. `prefix` varchar(255) DEFAULT NULL,
  32. `scope` int(11) DEFAULT NULL,
  33. `seturl` bit(1) DEFAULT NULL,
  34. `user_node_id` int(11) DEFAULT NULL,
  35. `channel_code` int(11) DEFAULT NULL,
  36. `enabled` bit(1) DEFAULT NULL,
  37. PRIMARY KEY (`id`),
  38. UNIQUE KEY `prefix` (`prefix`)
  39. ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4;
  40. /*!40101 SET character_set_client = @saved_cs_client */;
  41. --
  42. -- Dumping data for table `oss_upload_channel`
  43. --
  44. LOCK TABLES `oss_upload_channel` WRITE;
  45. /*!40000 ALTER TABLE `oss_upload_channel` DISABLE KEYS */;
  46. INSERT INTO `oss_upload_channel` VALUES (1,'2024-03-19 21:22:14.943424',_binary '\0','2024-03-19 21:22:14.943477',2,1002,10737418240,'video','video/playback/',1,_binary '\0',1,101,_binary ''),(2,'2024-03-19 21:22:15.518474',_binary '\0','2024-03-19 21:23:35.293880',2,1003,1073741824,'audio','audio/playback/',2,_binary '\0',1,102,_binary ''),(3,'2024-03-19 21:22:15.544515',_binary '\0','2024-03-19 22:44:12.032797',2,1001,2097152,'avatar','image/a/',2,_binary '\0',1,103,_binary ''),(4,'2024-03-19 21:22:15.565603',_binary '\0','2024-03-20 21:19:54.560909',2,1001,10485760,'image','image/i/',2,_binary '\0',1,104,_binary ''),(5,'2024-03-19 21:22:15.584021',_binary '\0','2024-03-19 21:22:15.584040',2,1001,104857600,'photo','image/p/',1,_binary '\0',1,105,_binary ''),(6,'2024-03-19 21:22:15.608002',_binary '\0','2024-03-19 22:44:21.023489',2,1001,10485760,'img','img/',2,_binary '\0',1,106,_binary ''),(9,'2024-03-22 21:20:40.148208',_binary '\0','2024-03-22 21:20:40.148247',2,1002,10737418240,'camvideo','video/cam/',1,_binary '\0',1,107,_binary ''),(10,'2024-03-26 21:34:20.549672',_binary '\0','2024-03-26 21:34:20.549699',2,1001,104857600,'imimg','im/img/',1,_binary '\0',2,108,_binary ''),(11,'2024-03-26 21:34:53.408084',_binary '\0','2024-03-26 21:34:53.408128',2,1002,1073741824,'imvid','im/vid/',1,_binary '\0',2,109,_binary ''),(12,'2024-03-26 21:35:13.068382',_binary '\0','2024-03-26 21:35:13.068425',2,1005,1073741824,'imfile','im/file/',1,_binary '\0',2,110,_binary ''),(13,'2024-03-26 21:35:47.170446',_binary '\0','2024-03-26 21:35:47.170490',2,1006,10737418240,'diskfile','file/',1,_binary '\0',2,111,_binary ''),(14,'2024-04-02 23:07:14.356675',_binary '\0','2024-04-02 23:07:14.356704',2,1003,1073741824,'imaud','imaud',1,_binary '\0',2,112,_binary '');
  47. /*!40000 ALTER TABLE `oss_upload_channel` ENABLE KEYS */;
  48. UNLOCK TABLES;
  49. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  50. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  51. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  52. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  53. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  54. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  55. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  56. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  57. -- Dump completed on 2024-12-15 22:47:21