Module: DmIsReflective::PostgresAdapter
- Includes:
- DataMapper
- Defined in:
- lib/dm-is-reflective/adapters/postgres_adapter.rb
Instance Method Summary collapse
Instance Method Details
#storages ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/dm-is-reflective/adapters/postgres_adapter.rb', line 5 def storages sql = " SELECT table_name FROM \"information_schema\".\"tables\"\n WHERE table_schema = current_schema()\n SQL\n\n select(Ext::String.compress_lines(sql))\nend\n" |