Inpsyde\MultilingualPress\Installation\Updater::update_type_column PHP 메소드

update_type_column() 개인적인 메소드

Updates invalid type field entries in the content relations table.
private update_type_column ( ) : void
리턴 void
    private function update_type_column()
    {
        $table = $this->content_relations_table->name();
        $this->db->query("UPDATE {$table} set ml_type = 'post' WHERE ml_type NOT IN('post','term')");
    }