We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using phinx version 0.16.0. Using the mysql adapter.
0.16.0
Code example:
$table = $this->table('trades'); $table ->renameColumn('uid_a', 'initiatorUserId') ->update();
The resulting SQL command is:
ALTER TABLE `trades` CHANGE COLUMN `uid_a` `initiatorUserId` int NOT NULLAUTO_INCREMENT COMMENT ''
With the issue of course being (lack of space between NULL and AUTO_INCREMENT)
NOT NULLAUTO_INCREMENT
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Using phinx version
0.16.0
. Using the mysql adapter.Code example:
The resulting SQL command is:
With the issue of course being (lack of space between NULL and AUTO_INCREMENT)
The text was updated successfully, but these errors were encountered: