Sohel Ahmed Mesaniya
Sohel Ahmed Mesaniya
### What steps will reproduce the problem? I have a migration file created by `$ ./yii migrate/create min_name` I have in `safeUp()`: `$this->execute("CREATE TYPE ".self::TABLE_NAME."_type AS ENUM ('github', 'gitlab', 'self-hosted-gitlab');");`...
When I set `clientCollection` https://www.yiiframework.com/extension/yiisoft/yii2-authclient/doc/api/2.1/yii-authclient-widgets-authchoice#$clientCollection-detail in AuthChoice https://www.yiiframework.com/extension/yiisoft/yii2-authclient/doc/api/2.1/yii-authclient-widgets-authchoice like below ### What steps will reproduce the problem? Step 1: set in components array in web config file as 'authClientCollection' =>...
I am suggesting to add a section in global footer or footer of home page which contain random contributor who committed at least one commit to Yii, like that of...
First of all, Thanks for this amazing library. I am using this library and would like to share experience that will give you data when you refactor code to improve...
I have Open API model that represents a DB table ```yaml # del: title: Del x-table: del type: object required: - id - user # ... properties: id: type: integer...
I have use-case like below - GET /calendar/domains - get all domains. Domain here is model and DB table. `calendar` is just the prefix - GET /calendar/domains/{id} - get a...
For field with bool data type which have default value either `true` or `false`, and not in required section, its migration is generated as `$this->boolean()->null()->defaultValue(false)` Ideally it should be `$this->boolean()->defaultValue(false)`...
Add title because it helps when there are lot of tabs open in browser
OpenAPI schema ``` properties: id: type: integer list_owner: $ref: '#/components/schemas/ListOwner' price: description: price in EUR type: number x-db-type: decimal(10,2) default: 0 ``` Generated Migration: ```php public function up() { $this->createTable('{{%table}}',...