-- $Id: wfwl_hostnames_create 539 2014-04-04 22:46:20Z bhockney $
--
-- Create new table `$WFWL_DB.hostnames`
--
CREATE TABLE $WFWL_DB.hostnames (
  id int(10) UNSIGNED NOT NULL auto_increment,
  refresh tinyint(1) UNSIGNED NOT NULL DEFAULT 1,
  ip_addr int(10) UNSIGNED NOT NULL DEFAULT 0,
  hostname varchar(255) DEFAULT NULL,
  PRIMARY KEY (ip_addr),
  UNIQUE KEY id (id),
  KEY refresh (refresh)
);
