RubyMine 3.1 - table list and sequences
RubyMine has a nice new feature to list and browse SQL tables. I use Postgresql and RubyMine correctly lists all tables in my development db. However the list contains also all sequences, which are not needed for me during coding.
Is there a way to remove sequences from Data Sources view list?
Please sign in to leave a comment.
Hello Grzegorz,
Currently you can do it by applying name filter in Data Source
Properties/Tables & Schemas tab.
On 2/17/11 4:07 PM, Grzegorz Daniluk wrote:
>
>
--
Gregory Shrago
Software Developer
JetBrains Inc.
http://www.jetbrains.com
"Develop With Pleasure!"
Thanks, "^(?!.*_seq).*$" did the trick.