itsmh

Results 1 comments of itsmh

Actually, it is created by the `Migration`. Here's the code ```php public function safeUp() { $this->createTable('activation', [ 'id' => $this->primaryKey(), 'title' => $this->string()->null(), 'identity_code' => $this->integer()->null(), 'is_active' => $this->boolean()->notNull()->defaultValue(0), ]);...