lib/torque/postgresql/adapter/schema_definitions.rb in torque-postgresql-2.4.5 vs lib/torque/postgresql/adapter/schema_definitions.rb in torque-postgresql-3.0.0

- old
+ new

@@ -1,57 +1,20 @@ # frozen_string_literal: true module Torque module PostgreSQL module Adapter - module ColumnMethods - - # Creates a column with an interval type, allowing span of times and - # dates to be stored without having to store a seconds-based integer - # or any sort of other approach - def interval(*args, **options) - args.each { |name| column(name, :interval, **options) } - end - - # Creates a column with an enum type, needing to specify the enum_type, - # which is basically the name of the type defined prior creating the - # column - def enum(*args, **options) - enum_type = [options.delete(:subtype), options.delete(:enum_type)].compact.first - args.each { |name| column(name, (enum_type || name), **options) } - end - - # Creates a column with an enum array type, needing to specify the - # enum_type, which is basically the name of the type defined prior - # creating the column - def enum_set(*args, **options) - super(*args, **options.merge(array: true)) - end - - end - module TableDefinition - include ColumnMethods - attr_reader :inherits def initialize(*args, **options) super @inherits = Array.wrap(options.delete(:inherits)).flatten.compact \ if options.key?(:inherits) end end - ActiveRecord::ConnectionAdapters::PostgreSQL::Table.include ColumnMethods ActiveRecord::ConnectionAdapters::PostgreSQL::TableDefinition.include TableDefinition - - if ActiveRecord::ConnectionAdapters::PostgreSQL.const_defined?('ColumnDefinition') - module ColumnDefinition - attr_accessor :subtype, :enum_type - end - - ActiveRecord::ConnectionAdapters::PostgreSQL::ColumnDefinition.include ColumnDefinition - end end end end