Skip to content

Commit 56b4855

Browse files
committed
resume rename
1 parent 32defe8 commit 56b4855

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

cbxtaxonomy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @wordpress-plugin
1616
* Plugin Name: CBX Taxonomy
1717
* Plugin URI: https://wordpress.org/plugins/cbxtaxonomy
18-
* Description: Custom taxonomy system for custom table/custom object types. This feature plugin is required for CBXResume, CBXJob and others codeboxr's plugins.
18+
* Description: Custom taxonomy system for custom table/custom object types. This feature plugin is required for ComfortResume, CBXJob and others codeboxr's plugins.
1919
* Version: 1.0.0
2020
* Requires at least: 3.5
2121
* Requires PHP: 7.4

includes/Migrations/CBXTaxonomyTaxableTableV1D0D0.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
class CBXTaxonomyTaxableTableV1D0D0 {
1414

1515
public function __construct() {
16-
$cbxresume_table = 'cbxtaxable';
16+
$comfortresume_table = 'cbxtaxable';
1717
try {
18-
if (!Capsule::schema()->hasTable($cbxresume_table)) {
19-
Capsule::schema()->create($cbxresume_table, function ($table) {
18+
if (!Capsule::schema()->hasTable($comfortresume_table)) {
19+
Capsule::schema()->create($comfortresume_table, function ($table) {
2020
$table->bigIncrements('id');
2121
$table->bigInteger('taxonomy_id');
2222
$table->bigInteger('taxable_id');

includes/Migrations/CBXTaxonomyTaxonomyTableV1D0D0.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
class CBXTaxonomyTaxonomyTableV1D0D0 {
1414

1515
public function __construct() {
16-
$cbxresume_table = 'cbxtaxonomy';
16+
$cbxtaxonomy_table = 'cbxtaxonomy';
1717
try {
18-
if ( ! Capsule::schema()->hasTable( $cbxresume_table ) ) {
19-
Capsule::schema()->create( $cbxresume_table, function ( $table ) {
18+
if ( ! Capsule::schema()->hasTable( $cbxtaxonomy_table ) ) {
19+
Capsule::schema()->create( $cbxtaxonomy_table, function ( $table ) {
2020
$table->bigIncrements( 'id' );
2121
$table->string( 'title' );
2222
$table->string( 'slug' )->nullable();

0 commit comments

Comments
 (0)