forked from castlamp/zenbership_updates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path114.php
34 lines (30 loc) · 1.01 KB
/
114.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* Zenbership Update
*
* @date
* @link http://documentation.zenbership.com/Home/Updating-Zenbership
* @version v114
*
* CHANGES
* - Updated the registration "reset" code to work better.
* - Ability to add/remove fields from the member/contact "quick search" (make them searchable).
* - Logged in members accessing the login page are sent back to the manage page.
* - Invoices are marked as seen if a member/contact loads it.
* - Bug with content not appearing in member dashboard fixed.
*
* NEW PLUGINS
* -
*
* NEW TEMPLATES
* -
*
*/
return array(
"ALTER TABLE `ppSD_cart_sessions` DROP PRIMARY KEY;",
"ALTER TABLE `ppSD_cart_sessions` ADD `cid` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;",
"ALTER TABLE `ppSD_cart_sessions` ADD INDEX (`id`);",
"ALTER TABLE `ppSD_cart_sessions` CHANGE `id` `id` VARCHAR(20);",
"ALTER TABLE `ppSD_invoices` ADD `seen` MEDIUMINT(4) DEFAULT '0';",
"ALTER TABLE `ppSD_invoices` ADD `last_seen_date` DATETIME DEFAULT '1920-01-01 00:01:01';",
);