createTable('vk', [ 'id' => $this->primaryKey(), 'www' => $this->string(), 'skype' => $this->string(), 'instagram' => $this->string(), 'twitter' => $this->string(), 'facebook' => $this->string(), 'phone1' => $this->string(), 'phone2' => $this->string(), 'phone3' => $this->string(), 'phone4' => $this->string(), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('vk'); } }