update
This commit is contained in:
16
modules/autoupgrade/upgrade/sql/1.7.6.6.sql
Normal file
16
modules/autoupgrade/upgrade/sql/1.7.6.6.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
SET SESSION sql_mode='';
|
||||
SET NAMES 'utf8';
|
||||
|
||||
CREATE TABLE `PREFIX_employee_session` (
|
||||
`id_employee_session` int(11) unsigned NOT NULL auto_increment,
|
||||
`id_employee` int(10) unsigned DEFAULT NULL,
|
||||
`token` varchar(40) DEFAULT NULL,
|
||||
PRIMARY KEY `id_employee_session` (`id_employee_session`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `PREFIX_customer_session` (
|
||||
`id_customer_session` int(11) unsigned NOT NULL auto_increment,
|
||||
`id_customer` int(10) unsigned DEFAULT NULL,
|
||||
`token` varchar(40) DEFAULT NULL,
|
||||
PRIMARY KEY `id_customer_session` (`id_customer_session`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user