module Switchman::ActiveRecord::Migration::Compatibility::V5_0

Public Instance Methods

create_table(*args, **options) click to toggle source
Calls superclass method
# File lib/switchman/active_record/migration.rb, line 8
def create_table(*args, **options)
  options[:id] = :bigserial unless options.key?(:id)
  super
end