| Server IP : 69.72.244.102 / Your IP : 216.73.216.164 Web Server : LiteSpeed System : Linux s3434.fra1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64 User : konzalta ( 1271) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/konzalta/public_html/wp-content/plugins/wemail/includes/Upgrades/ |
Upload File : |
<?php
/**
* Create {prefix}wemail_forms table
*/
function wemail_upgrade_1_0_0_create_wemail_tables() {
global $wpdb;
$charset_collate = $wpdb->get_charset_collate();
$table_schema = "CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}wemail_forms` (
`id` varchar(36) NOT NULL,
`name` varchar(150) DEFAULT NULL,
`template` longtext NULL,
`plugin_version` varchar(10) NULL,
`settings` longtext NULL,
`type` varchar(191) DEFAULT 'inline',
`status` tinyint(1) DEFAULT '1',
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) {$charset_collate}";
if ( ! function_exists( 'dbDelta' ) ) {
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
}
dbDelta( $table_schema );
}
wemail_upgrade_1_0_0_create_wemail_tables();