diff options
Diffstat (limited to 'modules/comment/comment.schema')
-rw-r--r-- | modules/comment/comment.schema | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/comment/comment.schema b/modules/comment/comment.schema index 5620aa1e7..acbbbfd6d 100644 --- a/modules/comment/comment.schema +++ b/modules/comment/comment.schema @@ -12,11 +12,9 @@ function comment_schema() { 'comment' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), 'hostname' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''), 'timestamp' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - 'score' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'medium'), 'status' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'), 'format' => array('type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0), 'thread' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE), - 'users' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big'), 'name' => array('type' => 'varchar', 'length' => 60, 'not null' => FALSE), 'mail' => array('type' => 'varchar', 'length' => 64, 'not null' => FALSE), 'homepage' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE) @@ -42,4 +40,3 @@ function comment_schema() { return $schema; } - |