hyperstack-org/hyperstack

default for boolean dummy values not working

Open

#261 建立於 2019年10月3日

在 GitHub 查看
 (0 留言) (0 反應) (0 負責人)JavaScript (43 fork)batch import
buggood first issue

倉庫指標

Star
 (531 star)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

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

貢獻者指南