Index: shorturl.install =================================================================== --- shorturl.install (revision 11) +++ shorturl.install (working copy) @@ -12,7 +12,7 @@ function shorturl_schema() { $schema['shorturl_link'] = array( 'description' => 'ShortURL Links Table.', 'fields' => array( - 'lid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, 'length' => 22), + 'lid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'length' => 22), 'uid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'length' => 22), 'orig_url' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), 'title' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'default' => ''),