AiJiNanProject/db/live_video_transcoding_message.sql
小黄狗横扫士力架 bfc6a73c2f first commit
2022-12-28 09:45:16 +08:00

40 lines
1.5 KiB
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50709
Source Host : localhost:3306
Source Database : aijinan
Target Server Type : MYSQL
Target Server Version : 50709
File Encoding : 65001
Date: 2019-01-29 15:21:34
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `live_video_transcoding_message`
-- ----------------------------
DROP TABLE IF EXISTS `live_video_transcoding_message`;
CREATE TABLE `live_video_transcoding_message` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authorization` varchar(255) DEFAULT NULL COMMENT '此次推送请求的签名',
`request_id` varchar(255) DEFAULT NULL COMMENT '此次推送消息的 Request 编号',
`signing_cert_url` varchar(255) DEFAULT NULL COMMENT '签名证书的地址Base64编码过',
`message_id` varchar(255) DEFAULT NULL COMMENT '此次推送消息的 MessageId',
`message_tag` varchar(255) DEFAULT NULL COMMENT '此次推送消息的消息标签',
`job_id` varchar(255) DEFAULT NULL COMMENT '任务id',
`trans_request_id` varchar(255) DEFAULT NULL COMMENT '转码请求的requestId',
`type` varchar(64) DEFAULT NULL COMMENT '类型',
`state` varchar(64) DEFAULT NULL COMMENT '状态',
`create_date` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of live_video_transcoding_message
-- ----------------------------