rails 5.2.1 ruby 2.5.1
My Model
class InputForm < ApplicationRecord
acts_as_tenant(:tenant)
end
InputForm.validators shows
#<ActiveRecord::Validations::PresenceValidator:0x000000000baaae28
@attributes=[:tenant],
@options={:message=>:required}>
This is not allowing me to create the InputForm without tenant.
Note : I don't have any config setup (config.require_tenant = true ) or file like config/initializers/acts_as_tenant.rb
What i'm doing wrong ?