}
# alias now() to current_timestamp for deploying to other DBs
- if ((eval { lc ${ $info->{default_value} }||'') eq 'now()' }) {
+ if ((eval { lc ${ $info->{default_value} } }||'') eq 'now()') {
# do not use a ref to a constant, that breaks Data::Dump output
${$info->{default_value}} = 'current_timestamp';
}
# Numeric Types
boolean => { data_type => 'boolean' },
bool => { data_type => 'boolean' },
+ 'bool default false'
+ => { data_type => 'boolean', default_value => \'false' },
bigint => { data_type => 'bigint' },
int8 => { data_type => 'bigint' },