· 7 years ago · Oct 17, 2018, 03:34 PM
1insert into `agreements`(`id`,`agreement`,`text`,`created_at`,`updated_at`,`is_active`) values
2(3,'GDPRU consent','<p>I am giving consent to Adaptive Telehealth (ATH) and the associated Provider or company to whom I am assigned to use my data to facilitate the services for which I have signed up and for billing purpose, if bailable services apply in order to comply with GDPRU Relevant provisions in the GDPR - Articles 3, 28-31 and Recitals 22-25, 81-82 . I understand that I may withdraw my consent at any time and request that my records be permanently deleted from the Adaptive Telehealth platform by contacting Adaptive Telehealth through the internal Support link or by contacting support@adaptivetelehealth.com.</p>','0000-00-00 00:00:00','0000-00-00 00:00:00',1);
3
4/*Table structure for table `cw_cookies` */
5
6DROP TABLE IF EXISTS `cw_cookies`;
7
8CREATE TABLE `cw_cookies` (
9 `id` int(11) NOT NULL AUTO_INCREMENT,
10 `status` int(11) DEFAULT NULL,
11 `company_id` int(11) DEFAULT NULL,
12 `user_id` int(22) DEFAULT NULL,
13 PRIMARY KEY (`id`)
14) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;