5 lines
269 B
SQL
Executable File
5 lines
269 B
SQL
Executable File
ALTER TABLE `website_settings`
|
|
ADD `late_fee_charge` VARCHAR(250) NULL DEFAULT NULL AFTER `currency`,
|
|
ADD `damage_fee` INT(250) NULL DEFAULT NULL AFTER `late_fee_charge`;
|
|
ALTER TABLE `website_settings` CHANGE `damage_fee` `damage_fee` VARCHAR(250) NULL DEFAULT NULL;
|