[sqlalchemy] Re: COMMENT ON clause for schema.Column/schema.Table?

2008-12-31 Thread Jim Jones
Just wanted to give this a bump as it would be a very welcome feature for us, too. Postgres also supports this and the comments are generally very helpful when browsing the schema with CLI- or GUI-tools. Any volunteers? regards + happy new year -jj Michael Bayer wrote: columns support an

[sqlalchemy] Re: COMMENT ON clause for schema.Column/schema.Table?

2008-12-31 Thread Michael Bayer
just as a reminder, current approach is: t = Table('t', metadata, ) DDL(COMMENT ON COLUMN t.bar IS 'this is bar', t) the 0.6 series of SQLA, which is already underway, has an emphasis on dialect/type/schema operation, and is likely the best place for a complete Comment() construct.