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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
If #61 is merged, it will introduce new unwanted behaviour in migrations for PgSQL:
class m200000_000001_create_table_fruits extends \yii\db\Migration { public function safeUp() { $this->createTable('{{%fruits}}', [ 'id' => $this->primaryKey(), 'name' => $this->text()->null()->defaultValue(null)->comment('desc with \' quote'), <---------------------------- see comment here 0 => '"description" double precision NULL DEFAULT NULL', ]); $this->addCommentOnColumn('{{%fruits}}', 'name', 'desc with \' quote'); <---------------------------- see comment here too, this is not needed $this->addCommentOnColumn('{{%fruits}}', 'description', 'desc \' 2'); }
This exist due to
Also see yiisoft/yii2#19759.
priority: very low
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If #61 is merged, it will introduce new unwanted behaviour in migrations for PgSQL:
This exist due to
Also see yiisoft/yii2#19759.
priority: very low
The text was updated successfully, but these errors were encountered: