I have the following columns on a MSSQL 2014 database table:
Created datetime not null
constraint DF_Post_Created default getutcdate(),
Modified datetime not null
Can I make Modified to change every time the row is updated?
I think default getutcdate is only for when the row is created, right?