3 lines
95 B
MySQL
3 lines
95 B
MySQL
|
ALTER TABLE `vehicle` ADD COLUMN `is_active` tinyint(1);
|
||
|
UPDATE `vehicle` SET `is_active` = 1;
|