I would love to insert a default value into a column with data type datetime2(7). However, because my website is hosted on a server in a different timezone, the getdate func
Since Sql Server 2016 you can use AT TIME ZONE...
AT TIME ZONE
SELECT CONVERT(datetime2(0), '2015-03-29T01:01:00', 126) AT TIME ZONE 'Central European Standard Time';
... as specified in the documentation