Skip to content

Commit 172a072

Browse files
Updated DB Engine to use InnoDB (MySQL default)
1 parent 15c3b85 commit 172a072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application/config/rest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@
285285
`rtime` float DEFAULT NULL,
286286
`authorized` tinyint(1) NOT NULL,
287287
PRIMARY KEY (`id`)
288-
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
288+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
289289
|
290290
*/
291291
$config['rest_enable_logging'] = FALSE;
@@ -368,7 +368,7 @@
368368
`hour_started` int(11) NOT NULL,
369369
`api_key` varchar(40) NOT NULL,
370370
PRIMARY KEY (`id`)
371-
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
371+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
372372
|
373373
*/
374374
$config['rest_enable_limits'] = FALSE;

0 commit comments

Comments
 (0)