| Server IP : 216.238.66.20 / Your IP : 216.73.216.51 Web Server : nginx/1.30.4 System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/domum.gamliel.mx/htdocs/opensourcepos/database/ |
Upload File : |
ALTER TABLE `ospos_suppliers`
ADD COLUMN `agency_name` VARCHAR(255) NOT NULL;
INSERT INTO `ospos_app_config` (`key`, `value`) VALUES
('dateformat', 'm/d/Y'),
('timeformat', 'H:i:s'),
('barcode_generate_if_empty', '0');
ALTER TABLE `ospos_sales_suspended`
DROP KEY `invoice_number`;
ALTER TABLE `ospos_items`
CHANGE COLUMN `item_pic` `pic_id` int(10) DEFAULT NULL;
-- Clear out emptied comments (0 inserted in comment if empty #192)
ALTER TABLE ospos_sales
MODIFY COLUMN comment text DEFAULT NULL;
ALTER TABLE ospos_receivings
MODIFY COLUMN comment text DEFAULT NULL;
ALTER TABLE ospos_sales_suspended
MODIFY COLUMN comment text DEFAULT NULL;
UPDATE `ospos_sales` SET comment = NULL WHERE comment = '0';
UPDATE `ospos_receivings` SET comment = NULL WHERE comment = '0';
UPDATE `ospos_sales_suspended` SET comment = NULL WHERE comment = '0';