Matthew Hawley
Well-known member
I get this error when I try to save.
Here is my code for Install.php
Here is my code for Install.php
Code:
<?php
class CF_Directory_Install {
public static function install($addon) {
$db = XenForo_Application::get('db');
$db->query("CREATE TABLE IF NOT EXISTS `xf_ci_directory_pages` (
`page_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`route` varchar(25) NOT NULL DEFAULT '',
`display_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`page_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;");
}
class CF_Directory_Uninstall {
public static function uninstall() {
$db = XenForo_Application::get('db');
$db->query("DROP TABLE `xf_cf_directory_pages`;");
}
}