Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit 30d36e6

Browse files
committed
try to fix #3694
1 parent 167add8 commit 30d36e6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/system/CategoriesModule/tables.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ function ZikulaCategoriesModule_tables()
3232
'is_leaf' => 'is_leaf',
3333
'name' => 'name',
3434
'value' => 'value',
35-
'sort_value' => 'sort_value',
35+
// 'sort_value' => 'sort_value',
3636
'display_name' => 'display_name',
3737
'display_desc' => 'display_desc',
38-
'path' => 'path',
39-
'ipath' => 'ipath',
38+
// 'path' => 'path',
39+
// 'ipath' => 'ipath',
4040
'status' => 'status'
4141
];
4242
ObjectUtil::addStandardFieldsToTableDefinition($columns);
@@ -60,11 +60,11 @@ function ZikulaCategoriesModule_tables()
6060
'is_leaf' => 'I1 NOTNULL DEFAULT 0',
6161
'name' => "C(255) NOTNULL DEFAULT ''",
6262
'value' => "C(255) NOTNULL DEFAULT ''",
63-
'sort_value' => 'I4 NOTNULL DEFAULT 2147483647',
63+
// 'sort_value' => 'I4 NOTNULL DEFAULT 2147483647',
6464
'display_name' => "X NOTNULL DEFAULT ''",
6565
'display_desc' => "X NOTNULL DEFAULT ''",
66-
'path' => "$pathType NOTNULL DEFAULT ''",
67-
'ipath' => "C(255) NOTNULL DEFAULT ''",
66+
// 'path' => "$pathType NOTNULL DEFAULT ''",
67+
// 'ipath' => "C(255) NOTNULL DEFAULT ''",
6868
'status' => "C(1) NOTNULL DEFAULT 'A'"
6969
];
7070
ObjectUtil::addStandardFieldsToTableDataDefinition($tabledef);

0 commit comments

Comments
 (0)