createTable('{{%profile}}', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'created_at' => $this->timestamp(), 'image' => $this->string(), 'activity' => $this->tinyInteger() ]); $this->addForeignKey('user_foreign', 'profile', 'user_id', 'user', 'id'); } /** * {@inheritdoc} */ public function safeDown() { $this->dropForeignKey('user_foreign', 'profile'); $this->dropTable('{{%profile}}'); } }