Initial commit
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
namespace FluentCrmMigrations;
|
||||
|
||||
class Campaigns
|
||||
{
|
||||
/**
|
||||
* Migrate the table.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function migrate()
|
||||
{
|
||||
global $wpdb;
|
||||
|
||||
$charsetCollate = $wpdb->get_charset_collate();
|
||||
|
||||
$table = $wpdb->prefix .'fc_campaigns';
|
||||
|
||||
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
||||
if ($wpdb->get_var("SHOW TABLES LIKE '$table'") != $table) {
|
||||
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
||||
$sql = "CREATE TABLE $table (
|
||||
`id` BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
||||
`parent_id` BIGINT UNSIGNED NULL,
|
||||
`type` VARCHAR(50) NOT NULL DEFAULT 'campaign',
|
||||
`title` VARCHAR(192) NOT NULL,
|
||||
`available_urls` TEXT NULL,
|
||||
`slug` VARCHAR(192) NOT NULL,
|
||||
`status` VARCHAR(50) NOT NULL,
|
||||
`template_id` BIGINT(20) UNSIGNED NULL,
|
||||
`email_subject` VARCHAR(192),
|
||||
`email_pre_header` VARCHAR(192),
|
||||
`email_body` LONGTEXT NOT NULL,
|
||||
`recipients_count` INT NOT NULL DEFAULT 0,
|
||||
`delay` INT(11) NULL DEFAULT 0,
|
||||
`utm_status` TINYINT(1) NULL DEFAULT 0,
|
||||
`utm_source` VARCHAR(192) NULL,
|
||||
`utm_medium` VARCHAR(192) NULL,
|
||||
`utm_campaign` VARCHAR(192) NULL,
|
||||
`utm_term` VARCHAR(192) NULL,
|
||||
`utm_content` VARCHAR(192) NULL,
|
||||
`design_template` VARCHAR(192) NULL,
|
||||
`scheduled_at` TIMESTAMP NULL,
|
||||
`settings` LONGTEXT null,
|
||||
`created_by` BIGINT UNSIGNED NULL,
|
||||
`created_at` TIMESTAMP NULL,
|
||||
`updated_at` TIMESTAMP NULL,
|
||||
KEY `type` (`type`),
|
||||
KEY `status` (`status`),
|
||||
KEY `parent_id` (`parent_id`)
|
||||
) $charsetCollate;";
|
||||
dbDelta($sql);
|
||||
} else {
|
||||
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
||||
$indexes = $wpdb->get_results("SHOW INDEX FROM $table");
|
||||
$indexedColumns = [];
|
||||
foreach ($indexes as $index) {
|
||||
$indexedColumns[] = $index->Column_name;
|
||||
}
|
||||
|
||||
if(!in_array('status', $indexedColumns)) {
|
||||
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
|
||||
$indexSql = "ALTER TABLE {$table} ADD INDEX `type` (`type`),
|
||||
ADD INDEX `status` (`status`),
|
||||
ADD INDEX `parent_id` (`parent_id`);";
|
||||
|
||||
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
|
||||
$wpdb->query($indexSql);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user