createTable('facebook', [ 'id' => $this->primaryKey(), 'tm' => $this->dateTime(), 'phone' => $this->string(), 'fb_id' => $this->string(), 'name' => $this->string(), 'photo' => $this->text() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('facebook'); } }