'description' =>t('Stores site names and private keys'),
'fields' =>array(
'sid' =>array(
'type' =>'serial',
'unsigned' =>TRUE,
'not null' =>TRUE,
'description' =>t('A number identifying a site'),
),
'sitename' =>array(
'type' =>'varchar',
'not null' =>TRUE,
'size' =>'normal',
'description' =>t('The site name for the record'),
),
'sitepk' =>array(
'type' =>'varchar',
'not null' =>TRUE,
'size' =>'norma
'description' => t('The privatekey of the child site'),
),
'ctime' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => t('A UNIX timestamp indicating when the site was added'),
),
),
'primary key' => array(
'
),
);
/*
user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOT NULL, `sitepk` VARCHAR NOT NULL, `ctime` INT NOT NULL DEFAULT 0, PRIMARY ' at line 3 query: CREATE TABLE sites ( `sid` INT unsigned NOT NULL auto_increment, `sitename` VARCHAR NOT NULL, `sitepk` VARCHAR NOT NULL, `ctime` INT NOT NULL DEFAULT 0, PRIMARY KEY (sid) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ in /Applications/xampp/xamppfiles/htdocs/includes/database.inc on line 515.