You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`name`varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_nopad_ai_ci NOT NULL COMMENT 'Forum name',
4
4
`description`varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_nopad_ai_ci DEFAULT NULL COMMENT 'Optional description of the forum',
5
5
`parentid`int(10) unsigned DEFAULT NULL COMMENT 'ID of the parent forum',
6
-
`sequence`int(2) unsigned NOT NULL DEFAULT 0 COMMENT 'Optional order for sorting. The higher the value, the higher in the list a forum will be. After that name sorting is expected.',
6
+
`sequence`int(2) unsigned NOT NULL DEFAULT 0 COMMENT 'Optional order for sorting. The higher the value, the higher in the list a forum will be. After that name sorting is expected.',
7
7
`type`tinyint(3) unsigned NOT NULL DEFAULT 1 COMMENT 'Type of the forum',
8
8
`system`tinyint(1) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag indicating that forum is system one, thus should not be deleted.',
9
9
`closed` datetime(6) DEFAULT NULL COMMENT 'Flag indicating if the forum is closed',
10
-
`private`tinyint(1) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag indicating if forum is private',
10
+
`private`tinyint(1) unsigned NOT NULL DEFAULT 1 COMMENT 'Flag indicating if forum is private',
11
11
`created` datetime(6) NOT NULL DEFAULT current_timestamp(6) COMMENT 'When forum was created',
12
12
`createdby`int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'User ID of the creator',
13
13
`updated` datetime(6) NOT NULL DEFAULT current_timestamp(6) ONUPDATEcurrent_timestamp(6) COMMENT 'When forum was updated',
14
14
`updatedby`int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'User ID of the last updater',
15
15
`icon`varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_nopad_as_ci DEFAULT NULL COMMENT 'Icon override',
0 commit comments