Sha256: ff1bcad2635219b729874bacc214503f1b6224f654dc9ec561e53a3c7959d696
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
# frozen_string_literal: true require 'active_record' module WithModel # In general, direct use of this class should be avoided. Instead use # either the {WithModel high-level API} or {WithModel::Model::DSL low-level API}. class Table # @param name The name of the table to create. # @param options Passed to ActiveRecord `create_table`. # @param block Passed to ActiveRecord `create_table`. # @see https://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html#method-i-create_table def initialize(name, options = {}, &block) @name = name.freeze @options = options.freeze @block = block end # Creates the table with the initialized options. Drops the table if # it already exists. def create connection.drop_table(@name) if exists? connection.create_table(@name, @options, &@block) end def destroy connection.drop_table(@name) end private def exists? if connection.respond_to?(:data_source_exists?) connection.data_source_exists?(@name) else connection.table_exists?(@name) end end def connection ActiveRecord::Base.connection end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
with_model-2.1.2 | lib/with_model/table.rb |
with_model-2.1.1 | lib/with_model/table.rb |