Sha256: e37aa4d882a255fe31f979897bad0825e94c95717475ce61bfe30c23fe8ad3df
Contents?: true
Size: 330 Bytes
Versions: 3
Compression:
Stored size: 330 Bytes
Contents
# frozen_string_literal: true module ActiveRecord module Dbt module Factory module TablesFactory def self.build ActiveRecord::Base.connection.tables.sort.map do |table_name| ActiveRecord::Dbt::Factory::TableFactory.build(table_name) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems