method

new

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: Column
new(*, auto_increment: nil, rowid: false, generated_type: nil, **) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/sqlite3/column.rb, line 9
        def initialize(*, auto_increment: nil, rowid: false, generated_type: nil, **)
          super
          @auto_increment = auto_increment
          @rowid = rowid
          @generated_type = generated_type
        end
Register or log in to add new notes.