When updating column in postgresql we can reset it value to DEFAULT
UPDATE table SET column = DEFAULT
Is there analogue in DBIx::Class? Just like this:
$schame->result_set( 'table' )->update({ column => DEFAULT })
Thank you to ilmari. I need ref
to use literal SQL:
$schame->result_set( 'table' )->update({ column => \'DEFAULT' })