-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
db migration #16
db migration #16
Conversation
|
||
public function up(MigrationBuilder $b): void | ||
{ | ||
$this->createAssignmentsTable($b); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest create table here and don't use private method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I do something here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry. I thought it was me 😕
composer.json
Outdated
"yiisoft/db-sqlite": "For using with SQLite", | ||
"yiisoft/db-mysql": "For using with MySQL", | ||
"yiisoft/db-pgsql": "For using with PosgtgreSQL", | ||
"yiisoft/db-mssql": "For using with Microsoft SQL Server", | ||
"yiisoft/db-oracle": "For using with Oracle", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it better mention the only yiisoft/db
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't feel like changing codes. At the moment I'm standardizing all the packages, maybe you've already noticed this.... 🤭 but I think Alexander confirmed to only put the ...db.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry. I thought it was me 😕
Co-authored-by: Sergei Predvoditelev <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #16 +/- ##
========================================
Coverage 0.00% 0.00%
Complexity 26 26
========================================
Files 1 1
Lines 95 95
========================================
Misses 95 95 ☔ View full report in Codecov by Sentry. |
Co-authored-by: Sergei Predvoditelev <[email protected]>
Thanks. |
#15