On Oct 21, 12:13 pm, Jeremy Evans <[EMAIL PROTECTED]> wrote: > > With 2.6.0, the following should work: > > # where schema is the schema/namespace of the table > class Domain < Sequel::Model(:schema__domains); end > > This should be a better solution than restricting OIDs, as someone > might want to get a description for one of the information schema > tables, and we don't want to restrict that.
Absolutely right. class Domain < Sequel::Model(:public__domains); end does the trick :-) regards, rolando./ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en -~----------~----~----~----~------~----~------~--~---
