function ajax_example_update_7100

Add the new ajax_example_node_form_alter table.

File

ajax_example/ajax_example.install, line 50

Code

function ajax_example_update_7100() {
    if (!db_table_exists('ajax_example_node_form_alter')) {
        $schema = ajax_example_schema();
        db_create_table('ajax_example_node_form_alter', $schema['ajax_example_node_form_alter']);
        return st('Created table ajax_example_node_form_alter');
    }
}