You are here

function node_limit_user_install in Node Limit 6

Implementation of hook_install().

File

node_limit_user/node_limit_user.install, line 11
Installation functions for module node_limit_user.

Code

function node_limit_user_install() {
  db_query("DROP TABLE IF EXISTS {node_limit_user}");
  drupal_install_schema('node_limit_user');
}