Skip to content

Commit cbee5c2

Browse files
committed
Merge branch '4.0' into 'main'
2 parents 9435577 + d97c638 commit cbee5c2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

phpmyfaq/src/phpMyFAQ/Instance/Database/Mysqli.php

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ class Mysqli extends Database implements Driver
186186
date_end VARCHAR(14) NOT NULL DEFAULT \'99991231235959\',
187187
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
188188
notes text DEFAULT NULL,
189+
sticky_order int(10) DEFAULT NULL,
189190
PRIMARY KEY (id, lang, solution_id, revision_id))
190191
DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB',
191192

phpmyfaq/src/phpMyFAQ/Instance/Database/Pgsql.php

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ class Pgsql extends Database implements Driver
187187
date_end VARCHAR(14) NOT NULL DEFAULT \'99991231235959\',
188188
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
189189
notes text DEFAULT NULL,
190+
sticky_order INTEGER DEFAULT NULL,
190191
PRIMARY KEY (id, lang, solution_id, revision_id))',
191192

192193
'faqdata_group' => 'CREATE TABLE %sfaqdata_group (

0 commit comments

Comments
 (0)