prefix}nf3_actions LIKE 'label'"; $results = $db->get_results( $sql ); /** * If we don't have the label column, we need to remove our new columns. * * Also, set our db stage 1 tracker to false. */ if ( empty ( $results ) ) { foreach( $this->_columns as $i => $col ) { if( 'label' === $col ) { unset( $this->_columns[ $i ] ); } } $this->db_stage_1_complete = false; } } } // End NF_Database_Models_Action