From d2d2e44b257e8b73e6bb92b27ce4a4bce52cdf08 Mon Sep 17 00:00:00 2001
From: Kevin Cristiano <kcristiano@kcristiano.com>
Date: Thu, 7 Oct 2021 08:21:08 -0400
Subject: [PATCH] add missing afform files

---
 civicrm/ext/afform/core/sql/auto_install.sql  | 45 +++++++++++++++++++
 .../ext/afform/core/sql/auto_uninstall.sql    | 20 +++++++++
 2 files changed, 65 insertions(+)
 create mode 100644 civicrm/ext/afform/core/sql/auto_install.sql
 create mode 100644 civicrm/ext/afform/core/sql/auto_uninstall.sql

diff --git a/civicrm/ext/afform/core/sql/auto_install.sql b/civicrm/ext/afform/core/sql/auto_install.sql
new file mode 100644
index 0000000000..e18f3df3a9
--- /dev/null
+++ b/civicrm/ext/afform/core/sql/auto_install.sql
@@ -0,0 +1,45 @@
+-- +--------------------------------------------------------------------+
+-- | 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
+--
+-- /*******************************************************
+-- *
+-- * Clean up the existing tables - this section generated from drop.tpl
+-- *
+-- *******************************************************/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+DROP TABLE IF EXISTS `civicrm_afform_submission`;
+
+SET FOREIGN_KEY_CHECKS=1;
+-- /*******************************************************
+-- *
+-- * Create new tables
+-- *
+-- *******************************************************/
+
+-- /*******************************************************
+-- *
+-- * civicrm_afform_submission
+-- *
+-- * Recorded form submissions
+-- *
+-- *******************************************************/
+CREATE TABLE `civicrm_afform_submission` (
+  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique Submission ID',
+  `contact_id` int unsigned,
+  `afform_name` varchar(255) COMMENT 'Name of submitted afform',
+  `data` text COMMENT 'IDs of saved entities',
+  `submission_date` timestamp DEFAULT CURRENT_TIMESTAMP,
+  PRIMARY KEY (`id`),
+  CONSTRAINT FK_civicrm_afform_submission_contact_id FOREIGN KEY (`contact_id`) REFERENCES `civicrm_contact`(`id`) ON DELETE SET NULL
+)
+ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
diff --git a/civicrm/ext/afform/core/sql/auto_uninstall.sql b/civicrm/ext/afform/core/sql/auto_uninstall.sql
new file mode 100644
index 0000000000..90004586bc
--- /dev/null
+++ b/civicrm/ext/afform/core/sql/auto_uninstall.sql
@@ -0,0 +1,20 @@
+-- +--------------------------------------------------------------------+
+-- | 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_afform_submission`;
+
+SET FOREIGN_KEY_CHECKS=1;
\ No newline at end of file
-- 
GitLab