<?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
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))
);
----