Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Dec 21, 2023
1 parent dc02bfd commit 4ca7df0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/params.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

'yiisoft/db-migration' => [
'newMigrationNamespace' => '',
'sourcePath' => '',
'newMigrationNamespaces' => [],
'mewMigrationPath' => '',
'sourceNamespaces' => [],
'sourcePaths' => [],
],
];
4 changes: 2 additions & 2 deletions src/MigrationBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ public function delete(string $table, array|string $condition = '', array $param
}

/**
* Builds and executes a SQL statement for creating a new DB table.
* Builds and executes an SQL statement for creating a new DB table.
*
* The columns in the new table should be specified as name-definition pairs (e.g. 'name' => 'string'), where name
* The columns in the new table should be specified as name-definition pairs (e.g. 'name' => 'string'), where name
* stands for a column name which will be properly quoted by the method, and definition stands for the column type
* which can contain an abstract DB type.
*
Expand Down

0 comments on commit 4ca7df0

Please sign in to comment.