|
-- Place your SQL code here
|
|
ALTER TABLE vn.mrwConfig ADD IF NOT EXISTS clientTypeWidth int(10) unsigned NULL
|
|
COMMENT 'If it does not reach the required value, it will be padded with zeros on the left to meet the specified length.';
|
|
|
|
UPDATE vn.mrwConfig
|
|
SET clientTypeWidth = 6; |