使用DBIx :: Class更新列值时如何将列值重置为DEFAULT?

时间:2017-10-05 15:35:53

标签: perl dbix-class

更新postgresql中的列时,我们可以将其值重置为DEFAULT

UPDATE table SET column = DEFAULT

DBIx :: Class中是否有模拟?就像这样:

$schame->result_set( 'table' )->update({ column => DEFAULT })

1 个答案:

答案 0 :(得分:0)

感谢 ilmari 。我需要ref来使用文字SQL:

$schame->result_set( 'table' )->update({ column => \'DEFAULT' })