diff --git a/application/migrations/023_rename_service_categories_table_to_categories.php b/application/migrations/023_rename_service_categories_table_to_categories.php new file mode 100644 index 00000000..596a4b28 --- /dev/null +++ b/application/migrations/023_rename_service_categories_table_to_categories.php @@ -0,0 +1,36 @@ + + * @copyright Copyright (c) 2013 - 2020, Alex Tselegidis + * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 + * @link http://easyappointments.org + * @since v1.5.0 + * ---------------------------------------------------------------------------- */ + +class Migration_Rename_service_categories_table_to_categories extends EA_Migration { + /** + * Upgrade method. + */ + public function up() + { + if ($this->db->table_exists('service_categories')) + { + $this->dbforge->rename_table('service_categories', 'categories'); + } + } + + /** + * Downgrade method. + */ + public function down() + { + if ($this->db->table_exists('categories')) + { + $this->dbforge->rename_table('categories', 'service_categories'); + } + } +}