-- $Id: wfwl_hostnames_create,v 1.1 2005/04/19 21:58:25 bhockney Exp $
--
-- 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)
);
