From: | David Fetter <david(at)fetter(dot)org> |
---|---|
To: | Shahaf Abileah <shahaf(at)redfin(dot)com> |
Cc: | pgsql-admin(at)postgresql(dot)org, pgsql-docs(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, psql-novice(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: [DOCS] Documenting a DB schema |
Date: | 2008-03-05 15:05:27 |
Message-ID: | 20080305150527.GK19860@fetter.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-docs pgsql-general pgsql-sql |
On Tue, Mar 04, 2008 at 12:02:27PM -0800, Shahaf Abileah wrote:
> I'm looking for a systematic way to document the schema for the database
> behind our website (www.redfin.com <http://www.redfin.com/> ), so that
> the developers using this database have a better idea what all the
> tables and columns mean and what data to expect. Any recommendations?
You can and should be using COMMENT ON for the important database
objects.
http://www.postgresql.org/docs/current/static/sql-comment.html
> It would be great if the documentation could be kept as close to the
> code as possible - that way we stand a chance of keeping it up to
> date.
If your schema is changing substantively (i.e. anything other than
adding/dropping table partitions) with any frequency, that's a sign of
a broken design process which you need to fix.
> So, in the same way that Java docs go right there on top of the class or
> method definitions, it would be great if I could attach my comments to
> the table definitions. It looks like MySQL has that kind of capability:
See above re: COMMENT ON :)
> create table table_with_comments(a int comment 'this is
> column a...');
>
> (see http://dev.mysql.com/doc/refman/5.0/en/create-table.html)
>
> However, Postgres doesn't support the "comment" keyword.
Actually, it does :)
> Is there an alternative?
Cheers,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com
Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate
From | Date | Subject | |
---|---|---|---|
Next Message | sathiya psql | 2008-03-05 15:32:59 | optimizating postgresql |
Previous Message | Kevin Grittner | 2008-03-05 14:31:46 | Re: Postgres port bindings changed after box restart |
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Huxton | 2008-03-05 15:05:30 | Re: FAQ on Embedding Postgres |
Previous Message | Bruce Momjian | 2008-03-05 15:02:41 | Re: FAQ on Embedding Postgres |
From | Date | Subject | |
---|---|---|---|
Next Message | sathiya psql | 2008-03-05 15:32:11 | indexing - creates problem |
Previous Message | Reece Hart | 2008-03-05 14:29:53 | executing query results withing psql |
From | Date | Subject | |
---|---|---|---|
Next Message | Jeff Frost | 2008-03-05 17:33:53 | finding columns that have three or fewer distinct characters |
Previous Message | Professor Flávio Brito | 2008-03-05 13:10:27 | Re: Documenting a DB schema |