salix/db/.archive/224701/00-sample.sql

6 lines
187 B
MySQL
Raw Permalink Normal View History

2022-09-22 13:44:35 +00:00
alter table `vn`.`sample`
add model VARCHAR(25) null comment 'Model name in plural';
UPDATE vn.sample t
2022-09-26 11:33:27 +00:00
SET t.model = 'Clients'
2022-09-30 11:54:20 +00:00
WHERE t.id IN(12, 13, 14, 15, 16, 18, 19, 20);