mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 17:57:58 -05:00
22 lines
613 B
SQL
22 lines
613 B
SQL
--
|
|
-- Add support for GDPR utility
|
|
--
|
|
|
|
-- Add columns to customer table for tracking purposes and explicit consent of data registration
|
|
|
|
ALTER TABLE `ospos_customers`
|
|
ADD COLUMN `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ADD COLUMN `employee_id` int(10) NOT NULL,
|
|
ADD COLUMN `consent` int(1) NOT NULL DEFAULT '0';
|
|
|
|
-- This is to enforce privacy by means of scrambling customer details
|
|
|
|
INSERT INTO `ospos_app_config` (`key`, `value`) VALUES
|
|
('enforce_privacy', '0');
|
|
|
|
|
|
-- Add print receipt autoreturn delay
|
|
|
|
INSERT INTO `ospos_app_config` (`key`, `value`) VALUES
|
|
('print_delay_autoreturn', '0');
|