Skip to content

Commit

Permalink
コメントの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
dovanhung committed Nov 1, 2023
1 parent f7fc193 commit 37c3a17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/baser-core/src/Database/Migration/BcMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class BcMigration extends AbstractMigration
*/
public function table(string $tableName, array $options = []): Table
{
echo $tableName . '\n';
echo $tableName . ' ';
$prefix = BcUtil::getCurrentDbConfig()['prefix'];
return parent::table($prefix . $tableName);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
// use Cake\TestSuite\Fixture\SchemaLoader;
// (new SchemaLoader())->loadSqlFiles('./tests/schema.sql', 'test');
(new Migrator())->runMany([
['plugin' => 'BcCustomContent'],
['plugin' => 'BaserCore'],
['plugin' => 'BcBlog'],
['plugin' => 'BcSearchIndex'],
['plugin' => 'BcContentLink'],
['plugin' => 'BcCustomContent'],
['plugin' => 'BcMail'],
['plugin' => 'BcWidgetArea'],
['plugin' => 'BcThemeConfig'],
Expand Down

0 comments on commit 37c3a17

Please sign in to comment.