Skip to content
Snippets Groups Projects
Verified Commit 6dc2bed0 authored by Kevin Cristiano's avatar Kevin Cristiano :earth_americas:
Browse files

5.38.0 missing search-kit sql files

parent 6fc44d16
No related branches found
No related tags found
No related merge requests found
-- +--------------------------------------------------------------------+
-- | Copyright CiviCRM LLC. All rights reserved. |
-- | |
-- | This work is published under the GNU AGPLv3 license with some |
-- | permitted exceptions and without any warranty. For full license |
-- | and copyright information, see https://civicrm.org/licensing |
-- +--------------------------------------------------------------------+
--
-- Generated from schema.tpl
-- DO NOT EDIT. Generated by CRM_Core_CodeGen
--
-- +--------------------------------------------------------------------+
-- | Copyright CiviCRM LLC. All rights reserved. |
-- | |
-- | This work is published under the GNU AGPLv3 license with some |
-- | permitted exceptions and without any warranty. For full license |
-- | and copyright information, see https://civicrm.org/licensing |
-- +--------------------------------------------------------------------+
--
-- Generated from drop.tpl
-- DO NOT EDIT. Generated by CRM_Core_CodeGen
--
-- /*******************************************************
-- *
-- * Clean up the existing tables
-- *
-- *******************************************************/
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `civicrm_search_display`;
SET FOREIGN_KEY_CHECKS=1;
-- /*******************************************************
-- *
-- * Create new tables
-- *
-- *******************************************************/
-- /*******************************************************
-- *
-- * civicrm_search_display
-- *
-- * Search Kit - saved search displays
-- *
-- *******************************************************/
CREATE TABLE `civicrm_search_display` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique SearchDisplay ID',
`name` varchar(255) NOT NULL COMMENT 'Unique name for identifying search display',
`label` varchar(255) NOT NULL COMMENT 'Label for identifying search display to administrators',
`saved_search_id` int unsigned NOT NULL COMMENT 'FK to saved search table.',
`type` varchar(128) NOT NULL COMMENT 'Type of display',
`settings` text DEFAULT NULL COMMENT 'Configuration data for the search display'
,
PRIMARY KEY (`id`)
, UNIQUE INDEX `UI_saved_search__id_name`(
saved_search_id
, name
)
, CONSTRAINT FK_civicrm_search_display_saved_search_id FOREIGN KEY (`saved_search_id`) REFERENCES `civicrm_saved_search`(`id`) ON DELETE CASCADE
) ROW_FORMAT=DYNAMIC ;
-- +--------------------------------------------------------------------+
-- | Copyright CiviCRM LLC. All rights reserved. |
-- | |
-- | This work is published under the GNU AGPLv3 license with some |
-- | permitted exceptions and without any warranty. For full license |
-- | and copyright information, see https://civicrm.org/licensing |
-- +--------------------------------------------------------------------+
--
-- Generated from drop.tpl
-- DO NOT EDIT. Generated by CRM_Core_CodeGen
--
-- /*******************************************************
-- *
-- * Clean up the existing tables
-- *
-- *******************************************************/
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `civicrm_search_display`;
SET FOREIGN_KEY_CHECKS=1;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment