You do not need a trigger for that.
All you need is a Check Constraint that forces the dates to be older than Right Now

ALTER TABLE TRUCK
ADD CONSTRAINT CheckValidDate CHECK (TRUCK_BUY_DATE >= GETDATE() );
DbDefence - transparent database encryption and SQL protection