Method: Webhookdb::Postgres.load_superclasses
- Defined in:
- lib/webhookdb/postgres.rb
.load_superclasses ⇒ Object
After configuration, load superclasses. You may need these without loading models, like if you need access to their DBs without loading them (if their tables do not yet exist)
138 139 140 141 142 |
# File 'lib/webhookdb/postgres.rb', line 138 def self.load_superclasses SUPERCLASSES.each do |sc| require(sc) end end |