Home

Add comments to tables and columns with PostgreSQL

Published on 8/19/2012


create table some_table(
  some_column int
);
comment on table some_table is 'some table comment';

comment on column some_table.some_column is 'some column comment';
... views