Create sql script to set the tnv warranty for all GOLD model batteries. #203

This commit is contained in:
Korina Cordero 2019-04-11 09:00:31 +00:00
parent be8ceb7e29
commit e4e52768f3

View file

@ -0,0 +1,2 @@
update battery as batt inner join battery_model as bmodel on batt.model_id = bmodel.id set batt.warr_tnv=12 where bmodel.name='GOLD';