| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You under the Apache License, Version 2.0 |
| * (the "License"); you may not use this file except in compliance with |
| * the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| SET FOREIGN_KEY_CHECKS=0; |
| |
| -- ---------------------------- |
| -- Table structure for linkis_ps_cs_context_map |
| -- ---------------------------- |
| DROP TABLE IF EXISTS `linkis_ps_cs_context_map`; |
| CREATE TABLE `linkis_ps_cs_context_map` ( |
| `id` int(11) NOT NULL AUTO_INCREMENT, |
| `key` varchar(128) DEFAULT NULL, |
| `context_scope` varchar(32) DEFAULT NULL, |
| `context_type` varchar(32) DEFAULT NULL, |
| `props` text, |
| `value` mediumtext, |
| `context_id` int(11) DEFAULT NULL, |
| `keywords` varchar(255) DEFAULT NULL, |
| PRIMARY KEY (`id`), |
| UNIQUE KEY `key` (`key`,`context_id`,`context_type`), |
| KEY `keywords` (`keywords`(191)) |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
| |
| -- ---------------------------- |
| -- Table structure for linkis_ps_cs_context_map_listener |
| -- ---------------------------- |
| DROP TABLE IF EXISTS `linkis_ps_cs_context_map_listener`; |
| CREATE TABLE `linkis_ps_cs_context_map_listener` ( |
| `id` int(11) NOT NULL AUTO_INCREMENT, |
| `listener_source` varchar(255) DEFAULT NULL, |
| `key_id` int(11) DEFAULT NULL, |
| PRIMARY KEY (`id`) |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
| |
| -- ---------------------------- |
| -- Table structure for linkis_ps_cs_context_history |
| -- ---------------------------- |
| DROP TABLE IF EXISTS `linkis_ps_cs_context_history`; |
| CREATE TABLE `linkis_ps_cs_context_history` ( |
| `id` int(11) NOT NULL AUTO_INCREMENT, |
| `context_id` int(11) DEFAULT NULL, |
| `source` text, |
| `context_type` varchar(32) DEFAULT NULL, |
| `history_json` text, |
| `keyword` varchar(255) DEFAULT NULL, |
| PRIMARY KEY (`id`), |
| KEY `keyword` (`keyword`(191)) |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
| |
| -- ---------------------------- |
| -- Table structure for linkis_ps_cs_context_id |
| -- ---------------------------- |
| DROP TABLE IF EXISTS `linkis_ps_cs_context_id`; |
| CREATE TABLE `linkis_ps_cs_context_id` ( |
| `id` int(11) NOT NULL AUTO_INCREMENT, |
| `user` varchar(32) DEFAULT NULL, |
| `application` varchar(32) DEFAULT NULL, |
| `source` varchar(255) DEFAULT NULL, |
| `expire_type` varchar(32) DEFAULT NULL, |
| `expire_time` datetime DEFAULT NULL, |
| `instance` varchar(32) DEFAULT NULL, |
| `backup_instance` varchar(255) DEFAULT NULL, |
| PRIMARY KEY (`id`), |
| KEY `instance` (`instance`), |
| KEY `backup_instance` (`backup_instance`(191)), |
| KEY `instance_2` (`instance`,`backup_instance`(191)) |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
| |
| -- ---------------------------- |
| -- Table structure for linkis_ps_cs_context_listener |
| -- ---------------------------- |
| DROP TABLE IF EXISTS `linkis_ps_cs_context_listener`; |
| CREATE TABLE `linkis_ps_cs_context_listener` ( |
| `id` int(11) NOT NULL AUTO_INCREMENT, |
| `listener_source` varchar(255) DEFAULT NULL, |
| `context_id` int(11) DEFAULT NULL, |
| PRIMARY KEY (`id`) |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
| |
| |
| |
| |
| |
| |