Set VIP to optional.
This commit is contained in:
parent
98c1ba4fab
commit
fb2269addf
1 changed files with 5 additions and 5 deletions
|
@ -8,10 +8,10 @@ class CreateVip < ActiveRecord::Migration
|
|||
:display => 'VIP',
|
||||
:data_type => 'boolean',
|
||||
:data_option => {
|
||||
:null => false,
|
||||
:default => false,
|
||||
:null => true,
|
||||
:default => false,
|
||||
:item_class => 'formGroup--halfSize',
|
||||
:options => {
|
||||
:options => {
|
||||
:false => 'no',
|
||||
:true => 'yes',
|
||||
},
|
||||
|
@ -20,9 +20,9 @@ class CreateVip < ActiveRecord::Migration
|
|||
:editable => false,
|
||||
:active => true,
|
||||
:screens => {
|
||||
:edit => {
|
||||
:edit => {
|
||||
:Admin => {
|
||||
:null => false,
|
||||
:null => true,
|
||||
},
|
||||
},
|
||||
:view => {
|
||||
|
|
Loading…
Reference in a new issue