You are here

function yamlform_update_8008 in YAML Form 8

Issue #2712463: Provide Entity–attribute–value model for submissions. Create 'yamlform_submission_data' table.

File

includes/yamlform.update.inc, line 164
YAML Form module update hooks.

Code

function yamlform_update_8008() {
  $schema = yamlform_schema();
  \Drupal::database()
    ->schema()
    ->createTable('yamlform_submission_data', $schema['yamlform_submission_data']);
}