| @@ -63,5 +63,31 @@ | ||
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | $wpdb->query("ALTER TABLE {$prefix}contact_segmentation ADD url_query_string longtext NULL DEFAULT NULL"); // phpcs:ignore |
| 66 | 66 | } |
| 67 | + | |
| 68 | + /** | |
| 69 | + * Adds funnel contact table. | |
| 70 | + * | |
| 71 | + * @since 1.5.0 | |
| 72 | + */ | |
| 73 | + public function add_funnel_contact_table() { | |
| 74 | + global $wpdb; | |
| 75 | + | |
| 76 | + $is_testcase_site = strpos( site_url(), 'artbees.team' ); // It should be removed. | |
| 77 | + | |
| 78 | + if ( | |
| 79 | + in_array( 'funnel_contact', $wpdb->tables, true ) && | |
| 80 | + ! $is_testcase_site // It should be removed. | |
| 81 | + ) { | |
| 82 | + return; | |
| 83 | + } | |
| 84 | + | |
| 85 | + // phpcs:disable | |
| 86 | + if ( $is_testcase_site ) { | |
| 87 | + $wpdb->query( "DROP TABLE IF EXISTS $wpdb->prefix" . Database::DATABASE_PREFIX . "funnel_contact" ); // It should be removed. | |
| 88 | + } | |
| 89 | + // phpcs:enable | |
| 90 | + | |
| 91 | + Database::create_new_table( 'funnel_contact' ); | |
| 92 | + } | |
| 67 | 93 | } |