Setting a column to the current date in Sql Server

Hello, I have a very simple question.

I want to insert a value of the current date into the column (set the column value to getdate())

 

I have the following change set:

 


                
 

 

The above syntax is just my guess - I could not find an example in the documentation.  The above will always try to put NULL as a value…

 

Any help is appreciated.

Thank you

NK

WIth liquibase 2.0 there is a valueComputed you should use instad of valueDate. ValueDate will try to parse the string as date and will fail.


Nathan