module SchemaPlus::Compatibility::ActiveRecord::ConnectionAdapters::SQLite3Adapter
Public Instance Methods
tables_only()
click to toggle source
# 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