TwitchBot icon indicating copy to clipboard operation
TwitchBot copied to clipboard

dbo.Broadcaster "LastUpdated" Column Hasn't Been Properly Implemented

Open SimpleSandman opened this issue 4 years ago • 0 comments

No update is being applied to the "LastUpdated" column. Remember to use UTC time.

Look into writing an UPDATE TRIGGER from the SQL side.

CREATE TRIGGER BroadcasterLastUpdated ON dbo.Broadcaster
AFTER UPDATE
AS
BEGIN
    UPDATE dbo.Broadcaster 
    SET LastUpdated = GETUTCDATE()
    FROM dbo.Broadcaster b
    INNER JOIN inserted i
        ON b.Id = i.Id
END
GO

SimpleSandman avatar Nov 05 '19 00:11 SimpleSandman