createTable('vk_comments', [ 'id' => $this->integer(), 'pid' => $this->integer()->defaultValue(0), 'site_id' => $this->smallInteger(), 'tm' => $this->dateTime(), 'name' => $this->string(), 'comment' => $this->text(), 'vk_id' => $this->string(), 'photo' => $this->text() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('vk_comments'); } }