--- bitcache/bitcache.install.orig 2009-04-16 18:55:13.000000000 -0700 +++ bitcache/bitcache.install 2009-04-16 18:58:56.000000000 -0700 @@ -66,7 +66,6 @@ 'description' => t("Repository enabled? ('0' or '1')."), 'type' => 'int', 'size' => 'tiny', - 'length' => 1, 'not null' => TRUE, 'default' => 0, ), @@ -74,7 +73,6 @@ 'description' => t("Repository mutable? ('0' or '1')."), 'type' => 'int', 'size' => 'tiny', - 'length' => 1, 'not null' => TRUE, 'default' => 0, ), @@ -82,7 +80,6 @@ 'description' => t("Repository indexed? ('0' or '1')."), 'type' => 'int', 'size' => 'tiny', - 'length' => 1, 'not null' => TRUE, 'default' => 0, ), @@ -90,7 +87,6 @@ 'description' => t("Repository weight."), 'type' => 'int', 'size' => 'tiny', - 'length' => 4, 'not null' => TRUE, 'default' => 0, ), @@ -201,28 +197,24 @@ 'enabled' => array( 'type' => 'int', 'size' => 'tiny', - 'length' => 1, 'not null' => TRUE, 'default' => 0, ), 'mutable' => array( 'type' => 'int', 'size' => 'tiny', - 'length' => 1, 'not null' => TRUE, 'default' => 0, ), 'indexed' => array( 'type' => 'int', 'size' => 'tiny', - 'length' => 1, 'not null' => TRUE, 'default' => 0, ), 'weight' => array( 'type' => 'int', 'size' => 'tiny', - 'length' => 4, 'not null' => TRUE, 'default' => 0, ),