Fixing name of plugin to be consistent with other plugins.
authorChuck Scott <cscott@gaslightmedia.com>
Thu, 2 Feb 2017 21:51:32 +0000 (16:51 -0500)
committerChuck Scott <cscott@gaslightmedia.com>
Thu, 2 Feb 2017 21:51:32 +0000 (16:51 -0500)
index.php
setup/databaseScripts/create_database_V0.0.1.sql

index ffc74e8..fb1ddb8 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
 <?php
 /**
- * Plugin Name: Gaslight Media Event Registrations
+ * Plugin Name: GLM Members Database Event Registrations
  * Plugin URI: http://www.gaslightmedia.com/
  * Description: Add-on to integrate registrations into Events add-on.
  * Version: 0.0.1
index 5eda4a9..e3f02ce 100644 (file)
@@ -139,7 +139,8 @@ CREATE TABLE {prefix}added_info_fields (
     ref_dest INT NULL,                                          -- Pointer to the specific entity of ref_type
     name TINYTEXT NULL,                                         -- Displayed field prompt - also used on retrieval of data
     description TINYTEXT NULL,                                  -- Description of field - possibly to display to user
-    PRIMARY KEY (id)
+    PRIMARY KEY (id),
+    INDEX(ref_dest(20))
 );
 
 ----