hyperstack-org/hyperstack
Ver no GitHubdefault for boolean dummy values not working
Open
#261 aberto em 3 de out. de 2019
buggood first issue
Métricas do repositório
- Stars
- (531 stars)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description
for booleans, the following default values in the schema should be recognized as true, anything else is false:
'1', true or 1
i.e. in ReactiveRecord::Base::DummyValue
def build_default_value_for_boolean
@column_hash[:default] == '1' || @column_hash[:default] == true || @column_hash[:default] == 1
end