Module: SchemaPlus::Compatibility::ActiveRecord::ConnectionAdapters::SQLite3Adapter
- Defined in:
- lib/schema_plus/compatibility/active_record/connection_adapters/sqlite3_adapter.rb
Instance Method Summary collapse
Instance Method Details
#tables_only ⇒ Object
5 6 7 |
# File 'lib/schema_plus/compatibility/active_record/connection_adapters/sqlite3_adapter.rb', line 5 def tables_only select_values("SELECT name FROM sqlite_master WHERE type = 'table' AND name <> 'sqlite_sequence'", 'SCHEMA') end |