AP_Activate::reputation_table()

Description #

AnsPress reputation table.

Changelog #

VersionDescription
4.1.8Introduced.

Source #

File: activate.php

203
204
205
206
207
208
209
210
211
212
213
214
215
216
public function reputation_table() {
    global $wpdb;
 
    $this->tables[] = 'CREATE TABLE ' . $wpdb->ap_reputations . ' (
            rep_id bigint(20) NOT NULL AUTO_INCREMENT,
            rep_user_id bigint(20) DEFAULT NULL,
            rep_event varchar(100) DEFAULT NULL,
            rep_ref_id bigint(20) DEFAULT NULL,
            rep_date timestamp NULL DEFAULT NULL,
            PRIMARY KEY  (rep_id),
            KEY rep_user_id (rep_user_id),
            KEY rep_ref_id (rep_ref_id)
        )' . $this->charset_collate . ';';
}

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Add your comment