prefix = Env::$db_prefix . 'mailpoet_'; $this->charset = Env::$db_charset; } function up() { global $wpdb; dbDelta($this->subscriber()); } function subscriber() { $table = $this->prefix . 'subscriber'; $sql = "CREATE TABLE " . $table . " ( id mediumint(9) NOT NULL AUTO_INCREMENT, name text NOT NULL, PRIMARY KEY (id) );"; return $sql; } }