-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat: add support for Schema::increments #175
Conversation
fdb5a0a
to
8b54515
Compare
Co-authored-by: Tomohito YABU <[email protected]>
7b7d86c
to
4a5a8cf
Compare
src/Schema/ColumnDefinition.php
Outdated
use Illuminate\Database\Query\Expression; | ||
use Illuminate\Database\Schema\ColumnDefinition as BaseColumnDefinition; | ||
|
||
class ColumnDefinition extends BaseColumnDefinition |
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.
Since UuidColumnDefinition
is used, it does not seem necessary to add this class.
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.
fixed
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.
LGTM
Thanks for reviewing! @tyabu12 |
This will allow migrations, jobs and other database related features to work properly.
#174 needs to be merged first.
Closes #157