AP_Activate::subscribers_table()
Description #
AnsPress email subscription related table.
Source #
File: activate.php
public function subscribers_table() {
global $wpdb;
$this->tables[] = 'CREATE TABLE ' . $wpdb->ap_subscribers . ' (
subs_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
subs_user_id bigint(20) UNSIGNED NOT NULL,
subs_ref_id bigint(20) UNSIGNED NOT NULL,
subs_event varchar(100) NOT NULL,
PRIMARY KEY (subs_id),
KEY subs_user_id (subs_user_id),
KEY subs_ref_id (subs_ref_id)
)' . $this->charset_collate . ';';
}
Expand full source code Collapse full source code View on GitHub: activate.php:223
Add your comment