Reviews_Table::register_tables()

Summary

Override for the table registration, as it was removed in version 4.0


Return

(void)


Source

File: src/BigCommerce/Schema/Reviews_Table.php

	public function register_tables() {
		// drop the tables
		if ( $this->schema_update_required() ) {
			foreach ( $this->tables as $table ) {
				$this->drop_table( $table );
			}
			$this->mark_schema_update_complete();
		}
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.