You are here

function panels_update_7303 in Panels 7.3

Add a custom cache table for Panels.

1 call to panels_update_7303()
panels_update_7302 in ./panels.install
Adding universally unique identifiers to panels.

File

./panels.install, line 574

Code

function panels_update_7303() {
  $schema = panels_schema_6();
  $table_name = 'cache_panels';
  if (!db_table_exists($table_name)) {
    db_create_table($table_name, $schema[$table_name]);
  }
}