You are here

function sheetnode_update_7003 in Sheetnode 7

Same name and namespace in other branches
  1. 7.2 sheetnode.install \sheetnode_update_7003()

Implements hook_update_N(). Add 'sheetnode_view' table.

File

./sheetnode.install, line 213
Install, update and uninstall functions for the sheetnode module.

Code

function sheetnode_update_7003(&$sandbox) {
  $schema = sheetnode_schema_7003();
  db_create_table('sheetnode_view', $schema['sheetnode_view']);
}