Module: RuboCop::Migration::CopConcerns::ColumnTypeMethod

Included in:
Cop::Migration::AddColumnWithDefaultValue, Cop::Migration::ReservedWordMysql
Defined in:
lib/rubocop/migration/cop_concerns/column_type_method.rb

Constant Summary collapse

COLUMN_TYPE_METHOD_NAMES =
::Set.new(
  %i[
    bigint
    binary
    blob
    boolean
    date
    datetime
    decimal
    float
    integer
    numeric
    primary_key
    string
    text
    time
  ]
).freeze