You are here

function linkchecker_update_5207 in Link checker 5.2

Add status column to links table.

File

./linkchecker.install, line 402
Installation file for Link Checker module.

Code

function linkchecker_update_5207() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {linkchecker_links} ADD COLUMN `status` INTEGER NOT NULL DEFAULT 1");
  return $ret;
}