Table Prefixes? Need multiple installations in one database.
Hello,
Would it be possible to make Fuel CMS support database table prefixes? I need to run 3 installations of Fuel CMS on one database, so the fact that the table names are basically hard-coded are a complete bummer for me, it essentially prevents me from using Fuel CMS for my project.
Comments
$config['tables'] = array( 'archives' => 'prefix_fuel_archives', 'blocks' => 'prefix_fuel_blocks', 'logs' => 'prefix_fuel_logs', 'navigation' => 'prefix_fuel_navigation', 'navigation_groups' => 'prefix_fuel_navigation_groups', 'pages' => 'prefix_fuel_pages', 'pagevars' => 'prefix_fuel_page_variables', 'permissions' => 'prefix_fuel_permissions', 'relationships' => 'prefix_fuel_relationships', 'settings' => 'prefix_fuel_settings', 'users' => 'prefix_fuel_users', );