mirror of
https://github.com/processwire/processwire.git
synced 2025-08-15 03:05:26 +02:00
Fix issue processwire/processwire-issues#1444
This commit is contained in:
@@ -371,6 +371,7 @@ DROP TABLE IF EXISTS `page_path_history`;
|
||||
CREATE TABLE `page_path_history` (
|
||||
`path` varchar(250) NOT NULL,
|
||||
`pages_id` int(10) unsigned NOT NULL,
|
||||
`language_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`path`),
|
||||
KEY `pages_id` (`pages_id`),
|
||||
|
@@ -371,6 +371,7 @@ DROP TABLE IF EXISTS `page_path_history`;
|
||||
CREATE TABLE `page_path_history` (
|
||||
`path` varchar(250) NOT NULL,
|
||||
`pages_id` int(10) unsigned NOT NULL,
|
||||
`language_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`path`),
|
||||
KEY `pages_id` (`pages_id`),
|
||||
|
@@ -586,6 +586,7 @@ DROP TABLE IF EXISTS `page_path_history`;
|
||||
CREATE TABLE `page_path_history` (
|
||||
`path` varchar(250) NOT NULL,
|
||||
`pages_id` int(10) unsigned NOT NULL,
|
||||
`language_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`path`),
|
||||
KEY `pages_id` (`pages_id`),
|
||||
|
Reference in New Issue
Block a user