Re: Some more questions on DB schema - Mailing list pgsql-www

From Alexey Borzov
Subject Re: Some more questions on DB schema
Date
Msg-id 408FA5EA.3020901@cs.msu.su
Whole thread Raw
In response to Re: Some more questions on DB schema  ("Dave Page" <dpage@vale-housing.co.uk>)
List pgsql-www
Hi!

Dave Page wrote:
>>1) What is the table 'dellog' for?
>
> It's a leftover from the old search engine iirc. I assume there's noting
> interesting in it? If not, it can go.

Yep, the table is empty.

>>2) Why 'comments' table does not have a foreign key on 'docs'?
>
> Oversight I guess. Feel free to add one.

There are some problems with this... Run the following query

SELECT id, version, file
FROM comments c
WHERE NOT EXISTS (
     SELECT id
     FROM docs d
     WHERE d.version = c.version AND
           d.file = c.file
);

and observe the comments that are linked to non-existant pages of
documentation. Someone'll have to fix these before adding a foreign key
will be possible.



pgsql-www by date:

Previous
From: Peter Eisentraut
Date:
Subject: Suggestions about event listing
Next
From: "Dave Page"
Date:
Subject: Re: Some more questions on DB schema