@@ -9,8 +9,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_answers` (
9
9
PRIMARY KEY (` id` ),
10
10
INDEX ` plugin_formcreator_formanswers_id` (` plugin_formcreator_formanswers_id` ),
11
11
INDEX ` plugin_formcreator_questions_id` (` plugin_formcreator_questions_id` )
12
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
13
-
12
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
14
13
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_categories` (
15
14
` id` int unsigned NOT NULL AUTO_INCREMENT,
16
15
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -25,8 +24,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_categories` (
25
24
INDEX ` name` (` name` ),
26
25
INDEX ` knowbaseitemcategories_id` (` knowbaseitemcategories_id` ),
27
26
INDEX ` plugin_formcreator_categories_id` (` plugin_formcreator_categories_id` )
28
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
29
-
27
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
30
28
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_entityconfigs` (
31
29
` id` int unsigned NOT NULL AUTO_INCREMENT,
32
30
` entities_id` int unsigned NOT NULL DEFAULT ' 0' ,
@@ -42,8 +40,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_entityconfigs` (
42
40
` header` text ,
43
41
PRIMARY KEY (` id` ),
44
42
UNIQUE KEY ` unicity` (` entities_id` )
45
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
46
-
43
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
47
44
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_forms` (
48
45
` id` int unsigned NOT NULL AUTO_INCREMENT,
49
46
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -72,8 +69,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms` (
72
69
INDEX ` entities_id` (` entities_id` ),
73
70
INDEX ` plugin_formcreator_categories_id` (` plugin_formcreator_categories_id` ),
74
71
FULLTEXT KEY ` Search` (` name` ,` description` )
75
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
76
-
72
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
77
73
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_formanswers` (
78
74
` id` int unsigned NOT NULL AUTO_INCREMENT,
79
75
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -92,35 +88,31 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_formanswers` (
92
88
INDEX ` requester_id` (` requester_id` ),
93
89
INDEX ` users_id_validator` (` users_id_validator` ),
94
90
INDEX ` groups_id_validator` (` groups_id_validator` )
95
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
96
-
91
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
97
92
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_forms_profiles` (
98
93
` id` int unsigned NOT NULL AUTO_INCREMENT,
99
94
` plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT ' 0' ,
100
95
` profiles_id` int unsigned NOT NULL DEFAULT ' 0' ,
101
96
` uuid` varchar (255 ) DEFAULT NULL ,
102
97
PRIMARY KEY (` id` ),
103
98
UNIQUE KEY ` unicity` (` plugin_formcreator_forms_id` ,` profiles_id` )
104
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
105
-
99
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
106
100
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_forms_users` (
107
101
` id` int unsigned NOT NULL AUTO_INCREMENT,
108
102
` plugin_formcreator_forms_id` int unsigned NOT NULL ,
109
103
` users_id` int unsigned NOT NULL ,
110
104
` uuid` varchar (255 ) DEFAULT NULL ,
111
105
PRIMARY KEY (` id` ),
112
106
UNIQUE KEY ` unicity` (` plugin_formcreator_forms_id` ,` users_id` )
113
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
114
-
107
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
115
108
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_forms_groups` (
116
109
` id` int unsigned NOT NULL AUTO_INCREMENT,
117
110
` plugin_formcreator_forms_id` int unsigned NOT NULL ,
118
111
` groups_id` int unsigned NOT NULL ,
119
112
` uuid` varchar (255 ) DEFAULT NULL ,
120
113
PRIMARY KEY (` id` ),
121
114
UNIQUE KEY ` unicity` (` plugin_formcreator_forms_id` ,` groups_id` )
122
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
123
-
115
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
124
116
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_forms_validators` (
125
117
` id` int unsigned NOT NULL AUTO_INCREMENT,
126
118
` plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT ' 0' ,
@@ -129,8 +121,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms_validators` (
129
121
` uuid` varchar (255 ) DEFAULT NULL ,
130
122
PRIMARY KEY (` id` ),
131
123
UNIQUE KEY ` unicity` (` plugin_formcreator_forms_id` ,` itemtype` ,` items_id` )
132
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
133
-
124
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
134
125
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_questions` (
135
126
` id` int unsigned NOT NULL AUTO_INCREMENT,
136
127
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -150,8 +141,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questions` (
150
141
PRIMARY KEY (` id` ),
151
142
INDEX ` plugin_formcreator_sections_id` (` plugin_formcreator_sections_id` ),
152
143
FULLTEXT KEY ` Search` (` name` ,` description` )
153
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
154
-
144
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
155
145
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_conditions` (
156
146
` id` int unsigned NOT NULL AUTO_INCREMENT,
157
147
` itemtype` varchar (255 ) NOT NULL DEFAULT ' ' COMMENT ' itemtype of the item affected by the condition' ,
@@ -165,8 +155,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_conditions` (
165
155
PRIMARY KEY (` id` ),
166
156
INDEX ` plugin_formcreator_questions_id` (` plugin_formcreator_questions_id` ),
167
157
INDEX ` item` (` itemtype` , ` items_id` )
168
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
169
-
158
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
170
159
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_sections` (
171
160
` id` int unsigned NOT NULL AUTO_INCREMENT,
172
161
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -176,8 +165,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_sections` (
176
165
` uuid` varchar (255 ) DEFAULT NULL ,
177
166
PRIMARY KEY (` id` ),
178
167
INDEX ` plugin_formcreator_forms_id` (` plugin_formcreator_forms_id` )
179
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
180
-
168
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
181
169
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_targetchanges` (
182
170
` id` int unsigned NOT NULL AUTO_INCREMENT,
183
171
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -215,8 +203,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targetchanges` (
215
203
` ola_question_ttr` int unsigned NOT NULL DEFAULT ' 0' ,
216
204
` uuid` varchar (255 ) DEFAULT NULL ,
217
205
PRIMARY KEY (` id` )
218
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
219
-
206
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
220
207
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_targettickets` (
221
208
` id` int unsigned NOT NULL AUTO_INCREMENT,
222
209
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -258,8 +245,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targettickets` (
258
245
` uuid` varchar (255 ) DEFAULT NULL ,
259
246
PRIMARY KEY (` id` ),
260
247
INDEX ` tickettemplates_id` (` tickettemplates_id` )
261
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
262
-
248
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
263
249
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_targetproblems` (
264
250
` id` int unsigned NOT NULL AUTO_INCREMENT,
265
251
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -283,8 +269,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targetproblems` (
283
269
` uuid` varchar (255 ) DEFAULT NULL ,
284
270
PRIMARY KEY (` id` ),
285
271
INDEX ` problemtemplates_id` (` problemtemplates_id` )
286
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
287
-
272
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
288
273
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_targets_actors` (
289
274
` id` int unsigned NOT NULL AUTO_INCREMENT,
290
275
` itemtype` varchar (255 ) DEFAULT NULL ,
@@ -296,8 +281,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targets_actors` (
296
281
` uuid` varchar (255 ) DEFAULT NULL ,
297
282
PRIMARY KEY (` id` ),
298
283
INDEX ` item` (` itemtype` , ` items_id` )
299
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
300
-
284
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
301
285
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_issues` (
302
286
` id` int unsigned NOT NULL AUTO_INCREMENT,
303
287
` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
@@ -320,8 +304,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_issues` (
320
304
INDEX ` requester_id` (` requester_id` ),
321
305
INDEX ` users_id_validator` (` users_id_validator` ),
322
306
INDEX ` groups_id_validator` (` groups_id_validator` )
323
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
324
-
307
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
325
308
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_items_targettickets` (
326
309
` id` int unsigned NOT NULL AUTO_INCREMENT,
327
310
` plugin_formcreator_targettickets_id` int unsigned NOT NULL DEFAULT ' 0' ,
@@ -332,8 +315,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_items_targettickets` (
332
315
PRIMARY KEY (` id` ),
333
316
INDEX ` plugin_formcreator_targettickets_id` (` plugin_formcreator_targettickets_id` ),
334
317
INDEX ` item` (` itemtype` ,` items_id` )
335
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
336
-
318
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
337
319
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_questiondependencies` (
338
320
` id` int unsigned NOT NULL AUTO_INCREMENT,
339
321
` plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT ' 0' ,
@@ -343,8 +325,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questiondependencies` (
343
325
PRIMARY KEY (` id` ),
344
326
INDEX ` plugin_formcreator_questions_id` (` plugin_formcreator_questions_id` ),
345
327
INDEX ` plugin_formcreator_questions_id_2` (` plugin_formcreator_questions_id_2` )
346
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
347
-
328
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
348
329
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_questionregexes` (
349
330
` id` int unsigned NOT NULL AUTO_INCREMENT,
350
331
` plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT ' 0' ,
@@ -353,8 +334,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questionregexes` (
353
334
` uuid` varchar (255 ) DEFAULT NULL ,
354
335
PRIMARY KEY (` id` ),
355
336
INDEX ` plugin_formcreator_questions_id` (` plugin_formcreator_questions_id` )
356
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
357
-
337
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
358
338
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_questionranges` (
359
339
` id` int unsigned NOT NULL AUTO_INCREMENT,
360
340
` plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT ' 0' ,
@@ -364,13 +344,12 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questionranges` (
364
344
` uuid` varchar (255 ) DEFAULT NULL ,
365
345
PRIMARY KEY (` id` ),
366
346
INDEX ` plugin_formcreator_questions_id` (` plugin_formcreator_questions_id` )
367
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
368
-
347
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT= DYNAMIC;
369
348
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_forms_languages` (
370
349
` id` int unsigned NOT NULL AUTO_INCREMENT,
371
350
` plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT ' 0' ,
372
351
` name` varchar (255 ) DEFAULT NULL ,
373
352
` comment` text ,
374
353
` uuid` varchar (255 ) DEFAULT NULL ,
375
354
PRIMARY KEY (` id` )
376
- ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
355
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci ROW_FORMAT = DYNAMIC ;
0 commit comments